skip to Main Content

Text is not updating in React Native

app.js import { StatusBar } from "expo-status-bar"; import { TouchableOpacity, Button, StyleSheet, Alert, SafeAreaView, Text, } from "react-native"; export default function App() { let count = 5; let counts = [count]; return ( <SafeAreaView style={styles.container}> <Text style={styles.Text}>Earn Money</Text> <TouchableOpacity onPress={()…

VIEW QUESTION
Back To Top
Search