import React from 'react'; import { StackNavigator } from 'react-navigation'; import { Dimensions, Button, Platform, ScrollView, Text, View, StatusBar, } from 'react-native'; import { ScreenOrientation } from 'expo'; const Separator = () => ( ); const Spacer = () => ( ); export default (navigationOptions = {}) => { class DumbScreen extends React.Component { static navigationOptions = { title: 'Title!', ...navigationOptions, headerStyle: { backgroundColor: '#6b52ae', ...navigationOptions.headerStyle, }, headerTitleStyle: { color: '#fff', ...navigationOptions.headerTitleStyle, }, }; render() { return (