官方文档:
https://reactnative.cn/docs/textinput.html#docsNav
效果图:
实现功能:
拿到输入对话框的数据:
代码:
TextInputDemo.js
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View,Alert,TextInput,TouchableHighlight} from 'react-native';
/**
* 输入框
* https://reactnative.cn/docs/textinput.html#docsNav
* 拿到输入文字
*
*
*/
export default class TextInputDemo extends Component{
constructor() {
super();
this.state = {
title: '登录',
username: '',
password: '',
};
}
onLogin = () => {
let username = this.state.username;
let password = this.state.password;