import * as React from 'react'; import { Text, View, StyleSheet, Image, TextInput } from 'react-native'; import Constants from 'expo-constants'; // You can import from local files import AssetExample from './components/AssetExample'; // or any pure javascript modules available in npm import { Card } from 'react-native-paper'; export default function App() { return ( this.setState({ email })} /> this.setState({ password })} /> ); } const styles = StyleSheet.create({ inputContainer: { borderBottomColor: '#F5FCFF', backgroundColor: '#FFFFFF', borderRadius: 30, borderBottomWidth: 1, width: 250, height: 45, marginBottom: 20, flexDirection: 'row', alignItems: 'center', }, input: { height: 45, marginLeft: 16, borderBottomColor: '#FFFFFF', flex: 1, }, inpuIcon: { width: 30, height: 30, marginLeft: 15, justifyContent: 'center', }, container: { flex: 1, justifyContent: 'center', paddingTop: Constants.statusBarHeight, backgroundColor: '#ecf0f1', padding: 8, }, paragraph: { margin: 24, fontSize: 18, fontWeight: 'bold', textAlign: 'center', }, });