import React, { Component} from 'react'; import { View, StyleSheet, Text, TextInput } from 'react-native'; export default class App extends Component { state={ name: '', } handleText = text => { this.setState({name: text}); } render() { return ( Helló Világ this.handleText(text)} /> {this.state.name} ); } } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, input: { borderColor: 'green', borderWidth: 3, width: '90%', fontSize: 35, } });