import * as React from 'react'; import { Button, StatusBar } from 'react-native'; import { SafeAreaView } from '@react-navigation/native'; import { createStackNavigator } from 'react-navigation-stack'; class HomeScreen extends React.Component { static navigationOptions = { title: 'Welcome', }; render() { const { navigation } = this.props; const { push } = navigation; return (