如何在所有屏幕上链接组件?

问题描述 投票:0回答:1

我想知道如何在所有屏幕上将BottomTabBar顶部的组件链接起来?我有一个迷你播放器,它将在Spotify或Youtube上扩展,但找不到将其与标签栏链接的方法

对此有什么解决方案吗?

react-native react-navigation
1个回答
0
投票

只需将组件放置在导航器之外!

<Provider store={store}>
  <View>
     <AppNavigator />
     <SomeComponent />
  </View>
</Provider>
© www.soinside.com 2019 - 2024. All rights reserved.