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';
// Route - 'routeA'
// This is the component that gets shown when 'routeA' is pushed.
function ExampleRoute(props: RouteContentProps){
return (
{
// when this button is pressed, push a route
// with the "route key" value of 'routeA'.
props.navigation.push({
routeKey: 'routeA'
});
}}
>
Push: 'RouteA'
);
};
export function ExampleA01(){
return (
(
),
}
}}
// This prop controls the initial routes to show when the navigator
// first mounts.
initialRoutes={[{routeKey: 'routeA'}]}
/>
);
};
const styles = StyleSheet.create({
routeContainer: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
},
button: {
padding: 10,
backgroundColor: Colors.PURPLE.A700,
borderRadius: 10,
},
buttonText: {
fontWeight: '600',
color: 'white',
},
});