我正在使用react-router-native
弹出的CRNA
应用程序。我已将<AndroidBackButton>
组件添加到我<NativeRouter>
的文档中,但它似乎没有触发。
有什么方法可以调试它以查看它是否没有正确获取值?我正在使用<Redirect>
and<Link>
在我的应用程序中进行路由,因此应该有历史项目供 RR 使用。
欢迎任何想法或想法。
export default props => (
<NativeRouter>
<AndroidBackButton>
<Switch>
<Route exact path="/" component={Flash} />
<Route path="/will_not_work" render={routeProps => <WillNotWork {...props} {...routeProps} />} />
<View style={styles.container}>
<Switch>
<Route path="/menu" render={routeProps => <Menu {...props} {...routeProps} />} />
<Route path="/car_compatibility" render={routeProps => <CarCompatibilityChecker {...props} {...routeProps} />} />
<Route path="/how_it_works" render={routeProps => <HowItWorks {...props} {...routeProps} />} />
<Route path="/app_demo" render={routeProps => <AppDemo {...props} {...routeProps} />} />
</Switch>
</View>
</Switch>
</AndroidBackButton>
</NativeRouter>
);