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