react-native/docs/Basics-Component-TextInput.md

1.1 KiB

id title layout category permalink next
basics-component-textinput TextInput docs The Basics docs/basics-component-textinput.html basics-component-scrollview

Direct text-based user input is a foundation for many apps. Writing a post or comment on a page is a canonical example of this. TextInput is a basic component that allows the user to enter text.

This example creates a simple TextInput box with the string Type something here as the placeholder when the TextInput is empty.

import React, { Component } from 'react';
import { AppRegistry, Text, TextInput, View } from 'react-native';

class TextInputBasics extends Component {
  render() {
    return (
      <View style={{paddingTop: 22}}>
        <TextInput
          style={{
            height: 40,
            margin: 5,
            paddingLeft: 10,
            borderColor: 'black',
            borderWidth: 1
          }}
          placeholder="Type something here"
        />
      </View>
    );
  }
}

// App registration and rendering
AppRegistry.registerComponent('AwesomeProject', () => TextInputBasics);