SPSwastik Pradhanindesignsplash.hashnode.dev·Dec 9, 2023 · 1 min readReact native text input form makerimport { StyleSheet, Text, TextInput, View, Button } from "react-native"; import React, { useState } from "react"; const App = () => { const [name, setName] = useState(""); const [email, setEmail] = useState(""); const [password, setPassword] ...00
SPSwastik Pradhanindesignsplash.hashnode.dev·Dec 9, 2023 · 1 min readtext input handle in react nativeimport { StyleSheet, Text, TextInput, View, Button} from "react-native"; import React, { useState } from "react"; const App = () => { const [name, setName] = useState(""); return ( <View style={styles.viewtag}> <Text style={styles.tex...00
SPSwastik Pradhanindesignsplash.hashnode.dev·Dec 9, 2023 · 1 min readStyle in React Jsimport { StyleSheet, Text, View } from 'react-native' import React from 'react' const App = () => { return ( <View > <Text style={styles.textbox}>App</Text> </View> ) } export default App const styles = StyleSheet.create({ text...00
SPSwastik Pradhanindesignsplash.hashnode.dev·Dec 9, 2023 · 2 min readCounter App using React NativeCertainly! Below is a simple documentation for the provided React Native counter app: React Native Counter App Documentation Overview This is a simple React Native application that implements a basic counter functionality. Users can increment or dec...00
SPSwastik Pradhanindesignsplash.hashnode.dev·Dec 9, 2023 · 1 min readState in React NativeUse state is used to update any value or state in the code. If we write Swastik in the string and we want to change the string when we will click the button that time we use state. ex: import { StyleSheet, Text, View, Button } from 'react-native' i...00