From 24218f6ef15debfed30f4251e240ebaaca777b8d Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Thu, 30 Jan 2020 16:41:00 +0000 Subject: [PATCH] Deploy website Deploy website version based on dbd095f788c9b274cd2128ceac4144a0971a7adf --- docs/next/handling-text-input.html | 40 ++++++++++-------------- docs/next/handling-text-input/index.html | 40 ++++++++++-------------- 2 files changed, 34 insertions(+), 46 deletions(-) diff --git a/docs/next/handling-text-input.html b/docs/next/handling-text-input.html index 6aff6955e05..921da82c534 100644 --- a/docs/next/handling-text-input.html +++ b/docs/next/handling-text-input.html @@ -70,35 +70,29 @@ });
Edit

Handling Text Input

TextInput is a basic component that allows the user to enter text. It has an onChangeText prop that takes a function to be called every time the text changed, and an onSubmitEditing prop that takes a function to be called when the text is submitted.

For example, let's say that as the user types, you're translating their words into a different language. In this new language, every single word is written the same way: 🍕. So the sentence "Hello there Bob" would be translated as "🍕🍕🍕".

-