File tree Expand file tree Collapse file tree 1 file changed +0
-21
lines changed
packages/rn-tester/js/examples/Accessibility Expand file tree Collapse file tree 1 file changed +0
-21
lines changed Original file line number Diff line number Diff line change @@ -882,27 +882,6 @@ class EnabledExample extends React.Component<{}> {
882
882
}
883
883
}
884
884
885
- class TextInputExamples extends React . Component < $FlowFixMeProps , any > {
886
- constructor ( props ) {
887
- super ( props ) ;
888
- this . state = { focused : false } ;
889
- }
890
- render ( ) {
891
- return (
892
- < View >
893
- < TextInput
894
- accessible = { true }
895
- accessibilityState = { { selected : this . state . focused } }
896
- showSoftInputOnFocus = { false }
897
- onFocus = { ( ) => this . setState ( { focused : true } ) }
898
- onBlur = { ( ) => this . setState ( { focused : false } ) }
899
- style = { styles . default }
900
- />
901
- </ View >
902
- ) ;
903
- }
904
- }
905
-
906
885
exports . title = 'Accessibility' ;
907
886
exports . documentationURL = 'https://reactnative.dev/docs/accessibilityinfo' ;
908
887
exports . description = 'Examples of using Accessibility APIs.' ;
You can’t perform that action at this time.
0 commit comments