import * as React from 'react'; import { SafeAreaView, TouchableOpacity, Text, StyleSheet } from 'react-native'; import { NavigatorView, RouteContentProps } from 'react-native-ios-navigator'; import * as Colors from '../../constants/Colors'; function ExampleRoute(props: RouteContentProps){ return ( { props.navigation.push({ routeKey: 'routeA', }); }} > Push: 'RouteA' { // Pop current route when the button is pressed props.navigation.pop(); }} > Pop Current Route ); }; export function ExampleB05(){ return ( ( ), } }} initialRoutes={[{routeKey: 'routeA'}]} /> ); }; const styles = StyleSheet.create({ routeContainer: { flex: 1, alignItems: 'center', justifyContent: 'center', }, button: { padding: 10, backgroundColor: Colors.PURPLE.A700, borderRadius: 10, marginBottom: 10, }, buttonText: { fontWeight: '600', color: 'white', }, });