2015-02-20 04:10:52 +00:00
/ * *
2017-05-06 03:50:47 +00:00
* Copyright ( c ) 2015 - present , Facebook , Inc .
2016-07-12 12:51:57 +00:00
* All rights reserved .
*
* This source code is licensed under the BSD - style license found in the
* LICENSE file in the root directory of this source tree . An additional grant
* of patent rights can be found in the PATENTS file in the same directory .
*
2015-03-23 18:36:57 +00:00
* @ flow
2017-02-25 11:05:32 +00:00
* @ providesModule TextInputExample
2015-02-20 04:10:52 +00:00
* /
'use strict' ;
2016-04-09 03:36:40 +00:00
var React = require ( 'react' ) ;
var ReactNative = require ( 'react-native' ) ;
2015-02-20 04:10:52 +00:00
var {
Text ,
TextInput ,
View ,
StyleSheet ,
2016-04-09 03:36:40 +00:00
} = ReactNative ;
2015-02-20 04:10:52 +00:00
2017-08-18 01:36:54 +00:00
class WithLabel extends React . Component < $FlowFixMeProps > {
2016-07-26 08:00:02 +00:00
render ( ) {
2015-02-20 04:10:52 +00:00
return (
< View style = { styles . labelContainer } >
< View style = { styles . label } >
< Text > { this . props . label } < / T e x t >
< / V i e w >
{ this . props . children }
< / V i e w >
) ;
2016-07-26 08:00:02 +00:00
}
}
2015-02-20 04:10:52 +00:00
2017-08-18 01:36:54 +00:00
class TextEventsExample extends React . Component < { } , $FlowFixMeState > {
2016-07-26 08:00:02 +00:00
state = {
curText : '<No Event>' ,
prevText : '<No Event>' ,
prev2Text : '<No Event>' ,
prev3Text : '<No Event>' ,
} ;
2015-02-20 04:10:52 +00:00
2016-07-26 08:00:02 +00:00
updateText = ( text ) => {
2015-07-21 19:37:24 +00:00
this . setState ( ( state ) => {
return {
curText : text ,
prevText : state . curText ,
prev2Text : state . prevText ,
2015-11-02 17:13:41 +00:00
prev3Text : state . prev2Text ,
2015-07-21 19:37:24 +00:00
} ;
2015-02-20 04:10:52 +00:00
} ) ;
2016-07-26 08:00:02 +00:00
} ;
2015-02-20 04:10:52 +00:00
2016-07-26 08:00:02 +00:00
render ( ) {
2015-02-20 04:10:52 +00:00
return (
< View >
< TextInput
2015-03-04 22:04:52 +00:00
autoCapitalize = "none"
2015-02-20 04:10:52 +00:00
placeholder = "Enter text to see events"
autoCorrect = { false }
onFocus = { ( ) => this . updateText ( 'onFocus' ) }
onBlur = { ( ) => this . updateText ( 'onBlur' ) }
onChange = { ( event ) => this . updateText (
'onChange text: ' + event . nativeEvent . text
) }
onEndEditing = { ( event ) => this . updateText (
'onEndEditing text: ' + event . nativeEvent . text
) }
onSubmitEditing = { ( event ) => this . updateText (
'onSubmitEditing text: ' + event . nativeEvent . text
) }
2015-11-16 22:01:53 +00:00
onSelectionChange = { ( event ) => this . updateText (
'onSelectionChange range: ' +
event . nativeEvent . selection . start + ',' +
event . nativeEvent . selection . end
) }
2015-11-02 17:13:41 +00:00
onKeyPress = { ( event ) => {
this . updateText ( 'onKeyPress key: ' + event . nativeEvent . key ) ;
} }
2015-02-20 04:10:52 +00:00
style = { styles . default }
/ >
< Text style = { styles . eventLabel } >
{ this . state . curText } { '\n' }
2015-07-21 19:37:24 +00:00
( prev : { this . state . prevText } ) { '\n' }
2015-11-02 17:13:41 +00:00
( prev2 : { this . state . prev2Text } ) { '\n' }
( prev3 : { this . state . prev3Text } )
2015-02-20 04:10:52 +00:00
< / T e x t >
< / V i e w >
) ;
}
2016-07-26 08:00:02 +00:00
}
2015-02-20 04:10:52 +00:00
2017-08-18 01:36:54 +00:00
class RewriteExample extends React . Component < $FlowFixMeProps , any > {
2015-07-21 19:37:24 +00:00
constructor ( props ) {
super ( props ) ;
this . state = { text : '' } ;
}
render ( ) {
var limit = 20 ;
var remainder = limit - this . state . text . length ;
var remainderColor = remainder > 5 ? 'blue' : 'red' ;
return (
< View style = { styles . rewriteContainer } >
< TextInput
multiline = { false }
maxLength = { limit }
onChangeText = { ( text ) => {
text = text . replace ( / /g , '_' ) ;
this . setState ( { text } ) ;
} }
style = { styles . default }
value = { this . state . text }
/ >
< Text style = { [ styles . remainder , { color : remainderColor } ] } >
{ remainder }
< / T e x t >
< / V i e w >
) ;
}
}
2017-08-18 01:36:54 +00:00
class RewriteExampleInvalidCharacters extends React . Component < $FlowFixMeProps , any > {
2015-12-14 14:41:45 +00:00
constructor ( props ) {
super ( props ) ;
this . state = { text : '' } ;
}
render ( ) {
return (
< View style = { styles . rewriteContainer } >
< TextInput
multiline = { false }
onChangeText = { ( text ) => {
this . setState ( { text : text . replace ( /\s/g , '' ) } ) ;
} }
style = { styles . default }
value = { this . state . text }
/ >
< / V i e w >
) ;
}
}
2017-08-18 01:36:54 +00:00
class TokenizedTextExample extends React . Component < $FlowFixMeProps , any > {
2015-11-06 15:25:19 +00:00
constructor ( props ) {
super ( props ) ;
this . state = { text : 'Hello #World' } ;
}
render ( ) {
//define delimiter
let delimiter = /\s+/ ;
//split string
let _text = this . state . text ;
let token , index , parts = [ ] ;
while ( _text ) {
delimiter . lastIndex = 0 ;
token = delimiter . exec ( _text ) ;
if ( token === null ) {
break ;
}
index = token . index ;
if ( token [ 0 ] . length === 0 ) {
index = 1 ;
}
parts . push ( _text . substr ( 0 , index ) ) ;
parts . push ( token [ 0 ] ) ;
index = index + token [ 0 ] . length ;
_text = _text . slice ( index ) ;
}
parts . push ( _text ) ;
//highlight hashtags
parts = parts . map ( ( text ) => {
if ( /^#/ . test ( text ) ) {
2015-12-12 05:21:02 +00:00
return < Text key = { text } style = { styles . hashtag } > { text } < / T e x t > ;
2015-11-06 15:25:19 +00:00
} else {
return text ;
}
} ) ;
return (
< View >
< TextInput
multiline = { true }
style = { styles . multiline }
onChangeText = { ( text ) => {
this . setState ( { text } ) ;
} } >
< Text > { parts } < / T e x t >
< / T e x t I n p u t >
< / V i e w >
) ;
}
}
2017-08-18 01:36:54 +00:00
class BlurOnSubmitExample extends React . Component < { } > {
2016-07-26 08:00:02 +00:00
focusNextField = ( nextField ) => {
2016-01-12 16:17:49 +00:00
this . refs [ nextField ] . focus ( ) ;
2016-07-26 08:00:02 +00:00
} ;
2015-11-05 05:01:49 +00:00
2016-07-26 08:00:02 +00:00
render ( ) {
2015-11-05 05:01:49 +00:00
return (
< View >
< TextInput
2016-01-12 16:17:49 +00:00
ref = "1"
2015-11-05 05:01:49 +00:00
style = { styles . default }
2016-01-12 16:17:49 +00:00
placeholder = "blurOnSubmit = false"
returnKeyType = "next"
2015-11-05 05:01:49 +00:00
blurOnSubmit = { false }
onSubmitEditing = { ( ) => this . focusNextField ( '2' ) }
/ >
< TextInput
2016-01-12 16:17:49 +00:00
ref = "2"
2015-11-05 05:01:49 +00:00
style = { styles . default }
2016-01-12 16:17:49 +00:00
keyboardType = "email-address"
placeholder = "blurOnSubmit = false"
returnKeyType = "next"
2015-11-05 05:01:49 +00:00
blurOnSubmit = { false }
onSubmitEditing = { ( ) => this . focusNextField ( '3' ) }
/ >
< TextInput
2016-01-12 16:17:49 +00:00
ref = "3"
2015-11-05 05:01:49 +00:00
style = { styles . default }
2016-01-12 16:17:49 +00:00
keyboardType = "url"
placeholder = "blurOnSubmit = false"
returnKeyType = "next"
2015-11-05 05:01:49 +00:00
blurOnSubmit = { false }
onSubmitEditing = { ( ) => this . focusNextField ( '4' ) }
/ >
< TextInput
2016-01-12 16:17:49 +00:00
ref = "4"
2015-11-05 05:01:49 +00:00
style = { styles . default }
2016-01-12 16:17:49 +00:00
keyboardType = "numeric"
2017-06-27 23:05:11 +00:00
returnKeyType = "done"
2016-01-12 16:17:49 +00:00
placeholder = "blurOnSubmit = false"
2015-11-05 05:01:49 +00:00
blurOnSubmit = { false }
onSubmitEditing = { ( ) => this . focusNextField ( '5' ) }
/ >
< TextInput
2016-01-12 16:17:49 +00:00
ref = "5"
2015-11-05 05:01:49 +00:00
style = { styles . default }
2016-01-12 16:17:49 +00:00
keyboardType = "numbers-and-punctuation"
placeholder = "blurOnSubmit = true"
returnKeyType = "done"
2015-11-05 05:01:49 +00:00
/ >
< / V i e w >
) ;
}
2016-07-26 08:00:02 +00:00
}
2015-11-05 05:01:49 +00:00
2016-08-26 00:18:05 +00:00
type SelectionExampleState = {
selection : {
start : number ;
end ? : number ;
} ;
value : string ;
} ;
2017-08-18 01:36:54 +00:00
class SelectionExample extends React . Component < $FlowFixMeProps , SelectionExampleState > {
2016-08-26 00:18:05 +00:00
_textInput : any ;
constructor ( props ) {
super ( props ) ;
this . state = {
selection : { start : 0 , end : 0 } ,
value : props . value
} ;
}
onSelectionChange ( { nativeEvent : { selection } } ) {
this . setState ( { selection } ) ;
}
getRandomPosition ( ) {
var length = this . state . value . length ;
return Math . round ( Math . random ( ) * length ) ;
}
select ( start , end ) {
this . _textInput . focus ( ) ;
this . setState ( { selection : { start , end } } ) ;
}
selectRandom ( ) {
var positions = [ this . getRandomPosition ( ) , this . getRandomPosition ( ) ] . sort ( ) ;
this . select ( ... positions ) ;
}
placeAt ( position ) {
this . select ( position , position ) ;
}
placeAtRandom ( ) {
this . placeAt ( this . getRandomPosition ( ) ) ;
}
render ( ) {
var length = this . state . value . length ;
return (
< View >
< TextInput
multiline = { this . props . multiline }
onChangeText = { ( value ) => this . setState ( { value } ) }
onSelectionChange = { this . onSelectionChange . bind ( this ) }
ref = { textInput => ( this . _textInput = textInput ) }
selection = { this . state . selection }
style = { this . props . style }
value = { this . state . value }
/ >
< View >
< Text >
selection = { JSON . stringify ( this . state . selection ) }
< / T e x t >
< Text onPress = { this . placeAt . bind ( this , 0 ) } >
Place at Start ( 0 , 0 )
< / T e x t >
< Text onPress = { this . placeAt . bind ( this , length ) } >
Place at End ( { length } , { length } )
< / T e x t >
< Text onPress = { this . placeAtRandom . bind ( this ) } >
Place at Random
< / T e x t >
< Text onPress = { this . select . bind ( this , 0 , length ) } >
Select All
< / T e x t >
< Text onPress = { this . selectRandom . bind ( this ) } >
Select Random
< / T e x t >
< / V i e w >
< / V i e w >
) ;
}
}
2015-02-20 04:10:52 +00:00
var styles = StyleSheet . create ( {
page : {
paddingBottom : 300 ,
} ,
default : {
2017-10-09 16:28:59 +00:00
borderWidth : StyleSheet . hairlineWidth ,
2015-02-20 04:10:52 +00:00
borderColor : '#0f0f0f' ,
flex : 1 ,
fontSize : 13 ,
2015-04-29 08:29:00 +00:00
padding : 4 ,
2015-02-20 04:10:52 +00:00
} ,
multiline : {
2017-10-09 16:28:59 +00:00
borderWidth : StyleSheet . hairlineWidth ,
2015-02-20 04:10:52 +00:00
borderColor : '#0f0f0f' ,
flex : 1 ,
fontSize : 13 ,
height : 50 ,
2015-04-29 08:29:00 +00:00
padding : 4 ,
2015-04-29 22:55:36 +00:00
marginBottom : 4 ,
2015-04-29 08:29:00 +00:00
} ,
2017-03-20 07:00:21 +00:00
multilineExpandable : {
height : 'auto' ,
maxHeight : 100 ,
} ,
2015-04-29 08:29:00 +00:00
multilineWithFontStyles : {
color : 'blue' ,
fontWeight : 'bold' ,
fontSize : 18 ,
fontFamily : 'Cochin' ,
2015-04-29 22:55:36 +00:00
height : 60 ,
} ,
multilineChild : {
width : 50 ,
height : 40 ,
position : 'absolute' ,
right : 5 ,
backgroundColor : 'red' ,
2015-02-20 04:10:52 +00:00
} ,
eventLabel : {
margin : 3 ,
fontSize : 12 ,
} ,
labelContainer : {
flexDirection : 'row' ,
marginVertical : 2 ,
flex : 1 ,
} ,
label : {
2015-07-21 19:37:24 +00:00
width : 115 ,
alignItems : 'flex-end' ,
2015-02-20 04:10:52 +00:00
marginRight : 10 ,
paddingTop : 2 ,
} ,
2015-07-21 19:37:24 +00:00
rewriteContainer : {
flexDirection : 'row' ,
alignItems : 'center' ,
} ,
remainder : {
textAlign : 'right' ,
width : 24 ,
} ,
2015-11-06 15:25:19 +00:00
hashtag : {
color : 'blue' ,
fontWeight : 'bold' ,
} ,
2015-02-20 04:10:52 +00:00
} ) ;
2015-06-22 16:43:30 +00:00
exports . displayName = ( undefined : ? string ) ;
2015-02-20 04:10:52 +00:00
exports . title = '<TextInput>' ;
2015-04-29 08:29:00 +00:00
exports . description = 'Single and multi-line text inputs.' ;
2015-02-20 04:10:52 +00:00
exports . examples = [
{
title : 'Auto-focus' ,
render : function ( ) {
2016-02-04 13:12:36 +00:00
return (
< TextInput
autoFocus = { true }
style = { styles . default }
accessibilityLabel = "I am the accessibility label for text input"
/ >
) ;
2015-02-20 04:10:52 +00:00
}
} ,
2015-07-21 19:37:24 +00:00
{
title : "Live Re-Write (<sp> -> '_') + maxLength" ,
render : function ( ) {
return < RewriteExample / > ;
}
} ,
2015-12-14 14:41:45 +00:00
{
2016-01-12 16:17:49 +00:00
title : 'Live Re-Write (no spaces allowed)' ,
2015-12-14 14:41:45 +00:00
render : function ( ) {
return < RewriteExampleInvalidCharacters / > ;
}
} ,
2015-02-20 04:10:52 +00:00
{
title : 'Auto-capitalize' ,
render : function ( ) {
return (
< View >
< WithLabel label = "none" >
< TextInput
2015-03-04 22:04:52 +00:00
autoCapitalize = "none"
2015-02-20 04:10:52 +00:00
style = { styles . default }
/ >
< / W i t h L a b e l >
< WithLabel label = "sentences" >
< TextInput
2015-03-04 22:04:52 +00:00
autoCapitalize = "sentences"
2015-02-20 04:10:52 +00:00
style = { styles . default }
/ >
< / W i t h L a b e l >
< WithLabel label = "words" >
< TextInput
2015-03-04 22:04:52 +00:00
autoCapitalize = "words"
2015-02-20 04:10:52 +00:00
style = { styles . default }
/ >
< / W i t h L a b e l >
< WithLabel label = "characters" >
< TextInput
2015-03-04 22:04:52 +00:00
autoCapitalize = "characters"
2015-02-20 04:10:52 +00:00
style = { styles . default }
/ >
< / W i t h L a b e l >
< / V i e w >
) ;
}
} ,
{
title : 'Auto-correct' ,
render : function ( ) {
return (
< View >
< WithLabel label = "true" >
< TextInput autoCorrect = { true } style = { styles . default } / >
< / W i t h L a b e l >
< WithLabel label = "false" >
< TextInput autoCorrect = { false } style = { styles . default } / >
< / W i t h L a b e l >
< / V i e w >
) ;
}
} ,
2015-03-31 01:25:30 +00:00
{
title : 'Keyboard types' ,
render : function ( ) {
var keyboardTypes = [
'default' ,
'ascii-capable' ,
'numbers-and-punctuation' ,
'url' ,
'number-pad' ,
'phone-pad' ,
'name-phone-pad' ,
'email-address' ,
'decimal-pad' ,
'twitter' ,
'web-search' ,
'numeric' ,
] ;
var examples = keyboardTypes . map ( ( type ) => {
return (
< WithLabel key = { type } label = { type } >
< TextInput
keyboardType = { type }
style = { styles . default }
/ >
< / W i t h L a b e l >
) ;
} ) ;
return < View > { examples } < / V i e w > ;
}
} ,
2015-11-11 13:31:18 +00:00
{
title : 'Keyboard appearance' ,
render : function ( ) {
var keyboardAppearance = [
'default' ,
'light' ,
'dark' ,
] ;
var examples = keyboardAppearance . map ( ( type ) => {
return (
< WithLabel key = { type } label = { type } >
< TextInput
keyboardAppearance = { type }
style = { styles . default }
/ >
< / W i t h L a b e l >
) ;
} ) ;
return < View > { examples } < / V i e w > ;
}
} ,
2015-03-31 01:25:30 +00:00
{
title : 'Return key types' ,
render : function ( ) {
var returnKeyTypes = [
'default' ,
'go' ,
'google' ,
'join' ,
'next' ,
'route' ,
'search' ,
'send' ,
'yahoo' ,
'done' ,
'emergency-call' ,
] ;
var examples = returnKeyTypes . map ( ( type ) => {
return (
< WithLabel key = { type } label = { type } >
< TextInput
returnKeyType = { type }
style = { styles . default }
/ >
< / W i t h L a b e l >
) ;
} ) ;
return < View > { examples } < / V i e w > ;
}
} ,
{
title : 'Enable return key automatically' ,
render : function ( ) {
return (
< View >
< WithLabel label = "true" >
< TextInput enablesReturnKeyAutomatically = { true } style = { styles . default } / >
< / W i t h L a b e l >
< / V i e w >
) ;
}
} ,
{
title : 'Secure text entry' ,
render : function ( ) {
return (
< View >
< WithLabel label = "true" >
2016-06-01 13:57:43 +00:00
< TextInput secureTextEntry = { true } style = { styles . default } defaultValue = "abc" / >
2015-03-31 01:25:30 +00:00
< / W i t h L a b e l >
< / V i e w >
) ;
}
} ,
2015-02-20 04:10:52 +00:00
{
title : 'Event handling' ,
2016-10-16 11:11:59 +00:00
render : function ( ) : React . Element < any > { return < TextEventsExample / > ; } ,
2015-02-20 04:10:52 +00:00
} ,
{
title : 'Colored input text' ,
render : function ( ) {
return (
< View >
< TextInput
style = { [ styles . default , { color : 'blue' } ] }
2015-07-22 21:03:32 +00:00
defaultValue = "Blue"
2015-02-20 04:10:52 +00:00
/ >
< TextInput
style = { [ styles . default , { color : 'green' } ] }
2015-07-22 21:03:32 +00:00
defaultValue = "Green"
2015-02-20 04:10:52 +00:00
/ >
< / V i e w >
) ;
}
} ,
2016-02-03 08:21:30 +00:00
{
title : 'Colored highlight/cursor for text input' ,
render : function ( ) {
return (
< View >
< TextInput
style = { styles . default }
2017-10-10 00:37:08 +00:00
selectionColor = { 'green' }
2016-02-03 08:21:30 +00:00
defaultValue = "Highlight me"
/ >
< TextInput
style = { styles . default }
2017-10-10 00:37:08 +00:00
selectionColor = { 'rgba(86, 76, 205, 1)' }
2016-02-03 08:21:30 +00:00
defaultValue = "Highlight me"
/ >
< / V i e w >
) ;
}
} ,
2015-02-27 16:40:52 +00:00
{
title : 'Clear button mode' ,
render : function ( ) {
return (
< View >
< WithLabel label = "never" >
< TextInput
style = { styles . default }
2015-03-04 22:04:52 +00:00
clearButtonMode = "never"
2015-02-27 16:40:52 +00:00
/ >
< / W i t h L a b e l >
< WithLabel label = "while editing" >
< TextInput
style = { styles . default }
2015-03-04 22:04:52 +00:00
clearButtonMode = "while-editing"
2015-02-27 16:40:52 +00:00
/ >
< / W i t h L a b e l >
< WithLabel label = "unless editing" >
< TextInput
style = { styles . default }
2015-03-04 22:04:52 +00:00
clearButtonMode = "unless-editing"
2015-02-27 16:40:52 +00:00
/ >
< / W i t h L a b e l >
< WithLabel label = "always" >
< TextInput
style = { styles . default }
2015-03-04 22:04:52 +00:00
clearButtonMode = "always"
2015-02-27 16:40:52 +00:00
/ >
< / W i t h L a b e l >
< / V i e w >
) ;
}
} ,
2015-04-15 00:51:28 +00:00
{
title : 'Clear and select' ,
2015-04-29 08:29:00 +00:00
render : function ( ) {
2015-04-15 00:51:28 +00:00
return (
< View >
< WithLabel label = "clearTextOnFocus" >
< TextInput
placeholder = "text is cleared on focus"
2015-07-22 21:03:32 +00:00
defaultValue = "text is cleared on focus"
2015-04-15 00:51:28 +00:00
style = { styles . default }
clearTextOnFocus = { true }
/ >
< / W i t h L a b e l >
< WithLabel label = "selectTextOnFocus" >
< TextInput
placeholder = "text is selected on focus"
2015-07-22 21:03:32 +00:00
defaultValue = "text is selected on focus"
2015-04-15 00:51:28 +00:00
style = { styles . default }
selectTextOnFocus = { true }
/ >
< / W i t h L a b e l >
2017-07-18 21:33:37 +00:00
< WithLabel label = "clearTextOnFocus (multiline)" >
< TextInput
placeholder = "text is cleared on focus"
defaultValue = "text is cleared on focus"
style = { styles . default }
clearTextOnFocus = { true }
multiline = { true }
/ >
< / W i t h L a b e l >
< WithLabel label = "selectTextOnFocus (multiline)" >
< TextInput
placeholder = "text is selected on focus"
defaultValue = "text is selected on focus"
style = { styles . default }
selectTextOnFocus = { true }
multiline = { true }
/ >
< / W i t h L a b e l >
2015-04-15 00:51:28 +00:00
< / V i e w >
) ;
}
} ,
2015-11-05 05:01:49 +00:00
{
title : 'Blur on submit' ,
2016-10-16 11:11:59 +00:00
render : function ( ) : React . Element < any > { return < BlurOnSubmitExample / > ; } ,
2015-11-05 05:01:49 +00:00
} ,
2015-12-02 15:11:20 +00:00
{
title : 'Multiline blur on submit' ,
render : function ( ) {
return (
< View >
< TextInput
style = { styles . multiline }
2016-01-12 16:17:49 +00:00
placeholder = "blurOnSubmit = true"
returnKeyType = "next"
2015-12-02 15:11:20 +00:00
blurOnSubmit = { true }
multiline = { true }
onSubmitEditing = { event => alert ( event . nativeEvent . text ) }
/ >
< / V i e w >
) ;
}
} ,
2015-11-27 14:52:29 +00:00
{
title : 'Multiline' ,
render : function ( ) {
return (
< View >
< TextInput
placeholder = "multiline text input"
multiline = { true }
style = { styles . multiline }
/ >
< TextInput
placeholder = "multiline text input with font styles and placeholder"
multiline = { true }
clearTextOnFocus = { true }
autoCorrect = { true }
autoCapitalize = "words"
placeholderTextColor = "red"
keyboardType = "url"
style = { [ styles . multiline , styles . multilineWithFontStyles ] }
/ >
2016-07-14 14:39:18 +00:00
< TextInput
placeholder = "multiline text input with max length"
maxLength = { 5 }
multiline = { true }
style = { styles . multiline }
/ >
2015-11-27 14:52:29 +00:00
< TextInput
placeholder = "uneditable multiline text input"
editable = { false }
multiline = { true }
style = { styles . multiline }
/ >
2016-07-31 21:20:13 +00:00
< TextInput
defaultValue = "uneditable multiline text input with phone number detection: 88888888."
editable = { false }
multiline = { true }
style = { styles . multiline }
dataDetectorTypes = "phoneNumber"
/ >
2015-11-27 14:52:29 +00:00
< TextInput
placeholder = "multiline with children"
multiline = { true }
enablesReturnKeyAutomatically = { true }
returnKeyType = "go"
style = { styles . multiline } >
< View style = { styles . multilineChild } / >
< / T e x t I n p u t >
< / V i e w >
) ;
}
} ,
2017-05-29 22:56:38 +00:00
{
title : 'TextInput Intrinsic Size' ,
render : function ( ) {
return (
2017-05-29 22:56:46 +00:00
< View >
< Text > Singleline TextInput < / T e x t >
< View style = { { height : 80 } } >
< TextInput
style = { {
position : 'absolute' ,
fontSize : 16 ,
backgroundColor : '#eeeeee' ,
borderColor : '#666666' ,
borderWidth : 5 ,
2017-05-29 22:56:47 +00:00
borderTopWidth : 20 ,
borderRadius : 10 ,
borderBottomRightRadius : 20 ,
2017-05-29 22:56:46 +00:00
padding : 10 ,
paddingTop : 20 ,
} }
2017-06-02 21:17:56 +00:00
testID = "singleline_textinput"
2017-05-29 22:56:46 +00:00
placeholder = "Placeholder defines intrinsic size"
/ >
< / V i e w >
< Text > Multiline TextInput < / T e x t >
2017-05-29 22:56:47 +00:00
< View style = { { height : 130 } } >
2017-05-29 22:56:46 +00:00
< TextInput
style = { {
position : 'absolute' ,
fontSize : 16 ,
backgroundColor : '#eeeeee' ,
borderColor : '#666666' ,
borderWidth : 5 ,
2017-05-29 22:56:47 +00:00
borderTopWidth : 20 ,
borderRadius : 10 ,
borderBottomRightRadius : 20 ,
2017-05-29 22:56:46 +00:00
padding : 10 ,
paddingTop : 20 ,
2017-05-29 22:56:47 +00:00
maxHeight : 100
2017-05-29 22:56:46 +00:00
} }
2017-06-02 21:17:56 +00:00
testID = "multiline_textinput"
2017-05-29 22:56:46 +00:00
multiline = { true }
placeholder = "Placeholder defines intrinsic size"
/ >
< / V i e w >
2017-07-18 21:33:58 +00:00
< View >
< TextInput
style = { {
fontSize : 16 ,
backgroundColor : '#eeeeee' ,
borderColor : '#666666' ,
borderWidth : 5 ,
borderTopWidth : 20 ,
borderRadius : 10 ,
borderBottomRightRadius : 20 ,
padding : 10 ,
paddingTop : 20 ,
} }
testID = "multiline_textinput_with_flex"
multiline = { true }
placeholder = "Placeholder defines intrinsic size"
/ >
< / V i e w >
2017-05-29 22:56:38 +00:00
< / V i e w >
) ;
}
} ,
2016-01-25 13:45:44 +00:00
{
title : 'Auto-expanding' ,
render : function ( ) {
return (
< View >
2017-03-20 07:00:21 +00:00
< TextInput
2016-01-25 13:45:44 +00:00
placeholder = "height increases with content"
2017-03-20 07:00:23 +00:00
defaultValue = "React Native enables you to build world-class application experiences on native platforms using a consistent developer experience based on JavaScript and React. The focus of React Native is on developer efficiency across all the platforms you care about - learn once, write anywhere. Facebook uses React Native in multiple production apps and will continue investing in React Native."
2017-03-20 07:00:21 +00:00
multiline = { true }
2016-01-25 13:45:44 +00:00
enablesReturnKeyAutomatically = { true }
2017-03-20 07:00:21 +00:00
returnKeyType = "go"
style = { [ styles . multiline , styles . multilineExpandable ] }
2016-01-25 13:45:44 +00:00
/ >
< / V i e w >
) ;
}
} ,
2015-11-27 14:52:29 +00:00
{
title : 'Attributed text' ,
render : function ( ) {
return < TokenizedTextExample / > ;
}
} ,
2016-08-26 00:18:05 +00:00
{
title : 'Text selection & cursor placement' ,
render : function ( ) {
return (
< View >
< SelectionExample
style = { styles . default }
value = "text selection can be changed"
/ >
< SelectionExample
multiline
style = { styles . multiline }
2017-10-10 00:37:08 +00:00
value = { 'multiline text selection\ncan also be changed' }
2016-08-26 00:18:05 +00:00
/ >
< / V i e w >
) ;
}
2016-10-18 15:01:00 +00:00
} ,
{
title : 'TextInput maxLength' ,
render : function ( ) {
return (
< View >
< WithLabel label = "maxLength: 5" >
< TextInput
maxLength = { 5 }
style = { styles . default }
/ >
< / W i t h L a b e l >
< WithLabel label = "maxLength: 5 with placeholder" >
< TextInput
maxLength = { 5 }
placeholder = "ZIP code entry"
style = { styles . default }
/ >
< / W i t h L a b e l >
< WithLabel label = "maxLength: 5 with default value already set" >
< TextInput
maxLength = { 5 }
defaultValue = "94025"
style = { styles . default }
/ >
< / W i t h L a b e l >
< WithLabel label = "maxLength: 5 with very long default value already set" >
< TextInput
maxLength = { 5 }
defaultValue = "9402512345"
style = { styles . default }
/ >
< / W i t h L a b e l >
< / V i e w >
) ;
}
} ,
2015-02-20 04:10:52 +00:00
] ;