TEXT AND TEXTINPUT IN REACTNATIVE
In React Native text is used to display text inside screenIt allows text render inside a app various types of textual information is availableParagraphs, buttons, labels Example of Text : import { Text,View, StyleSheet } from ‘react-native’; const YourComponent = () => {return( <View style={styles.container}><Text>Hello, Text Is Here</Text> </View>); }… Continue Reading TEXT AND TEXTINPUT IN REACTNATIVE