Git Command Get link Facebook X Pinterest Email Other Apps - January 23, 2019 cd f: cd kududay git pull -------------------- git status git add . git status git commit -m "otp" git push Get link Facebook X Pinterest Email Other Apps Comments
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
Basic Form in React-Native | form with state - January 17, 2023 App.js: import React , { useState } from 'react' ; import { Button , StyleSheet , Text , TextInput , View } from 'react-native' const App = () => { const [ name , setName ] = useState ( "" ); const [ password , setPassword ] = useState ( "" ); const [ email , setEmail ] = useState ( "" ); const [ display , setDisplay ] = useState ( false ); const resetFormData = () => { setDisplay ( false ); setName ( "" ); setPassword ( "" ); setEmail ( "" ); } return ( < View style = { { margin : 5 } } > < Text style = { { fontSize : 30 } } > Simple Form in React Native </ Text > < TextInput style = { styles . textInput } placeh... Read more
Comments
Post a Comment