Music Classes Get link Facebook X Pinterest Email Other Apps - July 16, 2018 सरगम (अलंकार ): सा रे ग म प ध नि सा रे, रे ग, ग म, म प, प ध, ध नि, नि सा Get link Facebook X Pinterest Email Other Apps Comments
React Native | Section List with example - January 24, 2023 App.js: import React from 'react' ; import { SectionList , Text , View } from 'react-native' ; const App =() => { users =[ { id : 1 , name : "Krishan" , data : [ "Angular" , "HTML" , "CSS" , "JavaScript" ] }, { id : 1 , name : "Krishan" , data : [ "HTML" , "Angular" , "CSS" , "JavaScript" ] }, { id : 1 , name : "Krishan" , data : [ "CSS" , "Angular" , "HTML" , "JavaScript" ] } ] r... Read more
How to make Grid in React Native - January 21, 2023 App.js: import React from 'react' ; import { StyleSheet , Text , View } from 'react-native' ; const App = () => { const users = [ { id : 1 , name : "Kavita" }, { id : 2 , name : "Kavita" }, { id : 3 , name : "Kavita" }, { id : 4 , name : "Kavita" }, { id : 5 , name : "Kavita" ... Read more
Style in React Native | Style Type - January 15, 2023 App.js: - import React , { useState } from 'react' ; import { Text , Button , View , StyleSheet } from 'react-native' ; import Exstyles from './exStyles' ; const App = () => { return ( < View > < Text style = { { fontSize : 30 , backgroundColor : 'green' } } > Style in react native </ Text > < Text style = { styles . textBox } > Style in react native </ Text > < Text style = { styles . textBox } > Style in react native </ Text > < Text style = { Exstyles . textBox } > Style in react native ... Read more
Comments
Post a Comment