@@ -322,6 +322,16 @@ Provides an initial value that will change when the user starts typing. Useful f
322
322
323
323
---
324
324
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
+
325
335
### ` cursorColor ` <div className =" label android " >Android</div >
326
336
327
337
When 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:
525
535
526
536
---
527
537
538
+ ### ` lineBreakStrategyIOS ` <div className =" 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 className =" 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
+
528
558
### ` maxFontSizeMultiplier `
529
559
530
560
Specifies 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
879
909
880
910
---
881
911
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
+
882
922
### ` spellCheck ` <div className =" label ios " >iOS</div >
883
923
884
924
If ` 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
1060
1100
| ------ |
1061
1101
| string |
1062
1102
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
-
1093
1103
## Methods
1094
1104
1095
1105
### ` .focus() `
0 commit comments