Fix example project

This commit is contained in:
Brent Vatne
2017-12-20 13:35:35 -08:00
parent ef63b230b2
commit 6af770d644
15 changed files with 905 additions and 913 deletions

View File

@@ -3,7 +3,7 @@
*/
import React from 'react';
import { Button, ScrollView } from 'react-native';
import { Button, ScrollView, StatusBar } from 'react-native';
import { StackNavigator, SafeAreaView } from 'react-navigation';
import SampleText from './SampleText';
@@ -19,6 +19,7 @@ const MyNavScreen = ({ navigation, banner }) => (
title="Go to a photos screen"
/>
<Button onPress={() => navigation.goBack(null)} title="Go back" />
<StatusBar barStyle="default" />
</SafeAreaView>
);