アプリのすべての画面で Bottom TabBar を表示しようとしていますが、RN V5 でそれを行う方法がまだ見つかりません。
だから私はtabBarVisible
このように使用しようとしたとき
<BottomTab.Navigator
lazy={false}
tabBar={props => <TabBar {...props} />}
screenOptions={({route}) => (
console.log('route', route), it's just log the five bottom component i have
{
tabBarVisible: ({routes}) => {
let tabBarVisible = false;
console.log('screens', routes); // Not log anything!
return {tabBarVisible};
},
}
)}
....
>
... 5 Tabs here
</BottomTab.Navigator>
では、どうすればこのケースを処理できますか? 他のスタック画面へのアクセス?
問題のコードスニペットを最小限に抑えるためだけに
これがルートファイルの完全なコードです。確認できますか?