@@ -322,6 +322,16 @@ Provides an initial value that will change when the user starts typing. Useful f
322322
323323---
324324
325+ ### ` disableKeyboardShortcuts ` <div className =" label ios " >iOS</div >
326+
327+ If ` true ` , the keyboard shortcuts (undo/redo and copy buttons) are disabled.
328+
329+ | Type | Default |
330+ | ---- | ------- |
331+ | bool | ` false ` |
332+
333+ ---
334+
325335### ` cursorColor ` <div className =" label android " >Android</div >
326336
327337When provided it will set the color of the cursor (or "caret") in the component. Unlike the behavior of ` selectionColor ` the cursor color will be set independently from the color of the text selection box.
@@ -525,6 +535,26 @@ The following values work on Android only:
525535
526536---
527537
538+ ### ` lineBreakStrategyIOS ` <div class =" label ios " >iOS</div >
539+
540+ Set line break strategy on iOS 14+. Possible values are ` none ` , ` standard ` , ` hangul-word ` and ` push-out ` .
541+
542+ | Type | Default |
543+ | ----------------------------------------------------------- | -------- |
544+ | enum(` 'none' ` , ` 'standard' ` , ` 'hangul-word' ` , ` 'push-out' ` ) | ` 'none' ` |
545+
546+ ---
547+
548+ ### ` lineBreakModeIOS ` <div class =" label ios " >iOS</div >
549+
550+ Set line break mode on iOS. Possible values are ` wordWrapping ` , ` char ` , ` clip ` , ` head ` , ` middle ` and ` tail ` .
551+
552+ | Type | Default |
553+ | -------------------------------------------------------------------------- | ---------------- |
554+ | enum(` 'wordWrapping' ` , ` 'char' ` , ` 'clip' ` , ` 'head' ` , ` 'middle' ` , ` 'tail' ` ) | ` 'wordWrapping' ` |
555+
556+ ---
557+
528558### ` maxFontSizeMultiplier `
529559
530560Specifies largest possible scale a font can reach when ` allowFontScaling ` is enabled. Possible values:
@@ -879,6 +909,16 @@ When `false`, it will prevent the soft keyboard from showing when the field is f
879909
880910---
881911
912+ ### ` smartInsertDelete ` <div className =" label ios " >iOS</div >
913+
914+ If ` false ` , the iOS system will not insert an extra space after a paste operation neither delete one or two spaces after a cut or delete operation.
915+
916+ | Type | Default |
917+ | ---- | ------- |
918+ | bool | ` true ` |
919+
920+ ---
921+
882922### ` spellCheck ` <div className =" label ios " >iOS</div >
883923
884924If ` false ` , disables spell-check style (i.e. red underlines). The default value is inherited from ` autoCorrect ` .
@@ -1060,36 +1100,6 @@ The value to show for the text input. `TextInput` is a controlled component, whi
10601100| ------ |
10611101| string |
10621102
1063- ---
1064-
1065- ### ` lineBreakStrategyIOS ` <div className =" label ios " >iOS</div >
1066-
1067- Set line break strategy on iOS 14+. Possible values are ` none ` , ` standard ` , ` hangul-word ` and ` push-out ` .
1068-
1069- | Type | Default |
1070- | ----------------------------------------------------------- | -------- |
1071- | enum(` 'none' ` , ` 'standard' ` , ` 'hangul-word' ` , ` 'push-out' ` ) | ` 'none' ` |
1072-
1073- ---
1074-
1075- ### ` lineBreakModeIOS ` <div className =" label ios " >iOS</div >
1076-
1077- Set line break mode on iOS. Possible values are ` wordWrapping ` , ` char ` , ` clip ` , ` head ` , ` middle ` and ` tail ` .
1078-
1079- | Type | Default |
1080- | -------------------------------------------------------------------------- | ---------------- |
1081- | enum(` 'wordWrapping' ` , ` 'char' ` , ` 'clip' ` , ` 'head' ` , ` 'middle' ` , ` 'tail' ` ) | ` 'wordWrapping' ` |
1082-
1083- ---
1084-
1085- ### ` disableKeyboardShortcuts ` <div className =" label ios " >iOS</div >
1086-
1087- If ` true ` , the keyboard shortcuts (undo/redo and copy buttons) are disabled. The default value is ` false ` .
1088-
1089- | Type |
1090- | ---- |
1091- | bool |
1092-
10931103## Methods
10941104
10951105### ` .focus() `
0 commit comments