Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 react-router-native 在我的应用程序的“页面”之间导航。这里的问题是我想根据用户位置更改应用栏的可见性。所以,我需要一种方法来观察和检测路线,这样我就可以操纵它
解决了!
为了解决这个问题,我在我的组件中创建了一个回调函数,它在加载时返回。因此,我可以检查一个变量 isAtLogin ? (<Appbar />) : (<View />),例如显示和隐藏 appbar。
isAtLogin ? (<Appbar />) : (<View />)