import * as React from 'react'; import { Button, TextInput, View } from 'react-native'; import { createStackNavigator, CardStyleInterpolators, } from 'react-navigation-stack'; class Input extends React.Component { static navigationOptions = { title: 'Input screen', }; render() { return ( ); } } class Home extends React.Component { static navigationOptions = { title: 'Home', }; render() { return (