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

react native firebase storage – unknown error

I'm building a react native app with firebase storage and i'm trying to 1) store the image in storage, 2) retrieve downloadURL, 3) set the downloadURL string in firebase for access via the database storage().ref('users').child(userKey + '/profileImage').put(image.path).then(() => { storage().ref('users').child(userKey…

VIEW QUESTION
Back To Top
Search