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