ReactNative学习----11输入框组件TextInput使用

本文介绍了ReactNative中的TextInput组件,通过官方文档链接提供了详细信息,并展示了如何获取输入对话框的数据。示例代码包括TextInputDemo.js,提供了一个源码下载链接供读者实践。
摘要由CSDN通过智能技术生成

官方文档:
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;
     
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值