我正在使用react-router-native
来浏览我的应用程序。我有一个聊天,当我切换到<Link />
的其他组件时,我希望它保持挂载状态。我通过创建Text
和Button
对此进行了测试,当我点击Button
时,文本变为随机数;当我现在切换到另一个组件并返回时,数字消失了。有没有可以保持号码加载的解决方案?
我像这样设置路由器:
<NativeRouter>
<View>
<Route exact path="/" component={Recipes} />
<Route path="/recipes" component={Recipes} />
<Route path="/bookmarks" component={Bookmarks} />
<Route path="/chat" component={Chat} />
<Route path="/community" component={Community} />
<Route path="/settings" component={Settings} />
</View>
</NativeRouter>