// @flow import * as React from 'react'; import {ScrollView, StyleSheet} from "react-native"; import {Button, withTheme} from 'react-native-paper'; type Props = { navigation: Object, route: Object, } type State = {} class InsaHomeScreen extends React.Component { state = {}; colors: Object; constructor(props) { super(props); this.colors = props.theme.colors; } render() { const nav = this.props.navigation; return ( ); } } const styles = StyleSheet.create({ container: { flex: 1, flexDirection: 'column', justifyContent: 'center', }, card: { margin: 10, }, header: { fontSize: 36, marginBottom: 48 }, textInput: {}, btnContainer: { marginTop: 5, marginBottom: 10, } }); export default withTheme(InsaHomeScreen);