Relative Content

Tag Archive for react-nativereact-hooks

react native reducer dispatch not working

I am trying to learn react-native on my own. Using below version for react/react-native
“react”: “18.2.0”,
“react-native”: “0.74.5”,
I am trying to build a simple authentication flow using AuthCotext and reducer. Below is the code

useEffect display the good results and then display something else without any changes

import { View, Text, StyleSheet, Pressable, Button, ActivityIndicator, Alert, FlatList } from ‘react-native’; import { useEffect, useState } from ‘react’; import { supabase } from ‘../lib/supabase’; import { useAuth } from ‘../providers/AuthProvider’; import { Quizz } from ‘../types/db’ import { Stack } from ‘expo-router’; export default function dailyQuizz() { const [listeQuestion, setListeQuestion] = useState<Quizz[]>([]); const […]