对于react-navigation v6,可以使用headerShadowVisible隐藏或显示标题的阴影。

    1. <Stack.Navigator screenOptions={{headerShadowVisible: false}}>
    2. <Stack.Screen name="Home" component={HomeScreen} />
    3. <Stack.Screen name="Notifications" component {NotificationsScreen} />
    4. <Stack.Screen name="Profile" component={ProfileScreen} />
    5. <Stack.Screen name="Settings" component={SettingsScreen} />
    6. </Stack.Navigator>