cari

Rumah  >  Soal Jawab  >  teks badan

Tajuk ditulis semula sebagai: Tidak dapat mengemas kini komponen `DrawerNavigator` semasa memaparkan komponen `Main2`

Apabila saya pergi dari satu halaman ke halaman yang lain, ralat ini muncul, walaupun penukaran berjaya, saya ingin menyingkirkan ralat ini, berikut adalah contoh kod saya, sila beritahu saya bagaimana untuk membetulkan ralat ini?

function Root() {

  return (
    <Drawer.Navigator initialRouteName="Home"
    
    //drawerContentOptions={{}}
    //drawerContent={<Text></Text>}
    screenOptions={{
      drawerActiveTintColor: '#0069B3',
      itemStyle: { marginVertical: 5 },
    }}
    drawerContent={(props) => <LeftMenu {...props} />}>
      <Drawer.Screen name="New" component={New}  options={{ drawerLabel: '1',title: "1", headerStyle:{backgroundColor: '#0069B3', height: 75}, headerTintColor: '#fff', headerTitleStyle:{fontSize: 22, fontWeight: '600'}, headerTitleAlign: 'left'}}/>
      <Drawer.Screen name="Home" component={Main}  options={{ drawerLabel: '2',title: "2", headerStyle:{backgroundColor: '#0069B3', height: 75}, headerTintColor: '#fff', headerTitleStyle:{fontSize: 22, fontWeight: '600'}, headerTitleAlign: 'left'}}/>
    </Drawer.Navigator>  

);
}
export const Navigator =() =>{
    const Stack = createStackNavigator();
    return(
      
    <Stack.Navigator  screenOptions={{}} initialRouteName="Authorization">
    <Stack.Screen name="Root" component={Root}options={{ headerShown: false }}/> 
    <Stack.Screen name="Root2" component={Root2}options={{ headerShown: false }}/> 
    <Stack.Screen name="Authorization" component={Authorization} options={{ headerShown: false }}/>

  </Stack.Navigator>
    )
}

P粉131455722P粉131455722501 hari yang lalu608

membalas semua(1)saya akan balas

  • P粉571233520

    P粉5712335202023-09-13 22:18:08

    Terdapat parameter navigation.setOptions pada halaman saya dan saya meletakkannya dalam useEffect

    balas
    0
  • Batalbalas