Style in React Js
import { 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...
designsplash.hashnode.dev1 min read