Popular posts from this blog
Style in React Native | Style Type
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 ...
React Native | Section List with example
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...


































































Comments
Post a Comment