首页 > 代码库 > React Native 组件之TextInput

React Native 组件之TextInput

React Native 组件之TextInput类似于iOS中的UITextView或者UITextField,是作为一个文字输入的组件,下面的TextInput的用法和相关属性。

/** * Sample React Native App * https://github.com/facebook/react-native * 周少停 2016-09-16 * TextInput 常用属性 */import React, { Component } from ‘react‘;import {  AppRegistry,  StyleSheet,  TextInput,  View} from ‘react-native‘;class Project extends Component {  render() {    return (      <View style={styles.container}>       <TextInput style={styles.inputStyle}          //value=http://www.mamicode.com/{‘我是默认的‘}     /*该文字无法删除*/>

  完整源码下载:https://github.com/pheromone/React-Native-1

React Native 组件之TextInput