1import { Text, View } from 'react-native'; 2 3export default function DrawerLayoutAndroidScreen() { 4 return ( 5 <View 6 style={{ 7 flex: 1, 8 backgroundColor: '#fff', 9 alignItems: 'center', 10 justifyContent: 'center', 11 }}> 12 <Text>Only available on Android</Text> 13 </View> 14 ); 15} 16 17DrawerLayoutAndroidScreen.navigationOptions = { 18 title: 'DrawerLayoutAndroid', 19}; 20