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-native-navigation(wix) 并且我的应用程序中有 4 个根选项卡。当我从一个选项卡转到另一个选项卡时,我想导航回以前的选项卡。
这是切尔尼夫的回答。但基本上他所说的是每个标签都有一个索引。从 0 到 N。
因此,通过这样做将实现它。
this.props.navigator.switchToTab({ tabIndex: desiredIndex });
同时,也感谢他帮助我。谢谢@Cherniv。