import React from 'react'; import { StyleSheet, Text, TextInput, TouchableOpacity, View } from 'react-native'; export default function LoginScreen() { const [username, setUsername] = React.useState(''); const [password, setPassword] = React.useState(''); function login(username:string, password:string) { console.log(username, password); } return ( Login Username Password login(username, password)} > Login ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#25292e', justifyContent: 'center', alignItems: 'center', }, text: { color: '#fff', }, input: { backgroundColor: '#fff', borderRadius: 5, padding: 10, marginBottom: 15, }, button: { backgroundColor: '#1e90ff', padding: 12, borderRadius: 5, alignItems: 'center', } });