@@ -65,10 +65,8 @@ export class TextField extends TextFieldBase {
65
65
const variant = this . variant ;
66
66
let needsTransparent = false ;
67
67
if ( variant === 'filled' ) {
68
-
69
68
layoutIdString = 'ns_material_text_field_filled' ;
70
69
} else if ( variant === 'outline' ) {
71
-
72
70
layoutIdString = 'ns_material_text_field_outline' ;
73
71
} else {
74
72
needsTransparent = true ;
@@ -328,18 +326,17 @@ export class TextField extends TextFieldBase {
328
326
this . nativeTextViewProtected . setGravity ( getHorizontalGravity ( this . textAlignment ) | getVerticalGravity ( value ) ) ;
329
327
}
330
328
331
- [ editableProperty . setNative ] ( value : boolean ) {
332
- super [ editableProperty . setNative ] ( value ) ;
333
- const nativeView = this . nativeTextViewProtected ;
334
- nativeView . setFocusable ( value ) ;
335
- }
329
+ // [editableProperty.setNative](value: boolean) {
330
+ // super[editableProperty.setNative](value);
331
+ // // const nativeView = this.nativeTextViewProtected;
332
+ // // nativeView.setFocusable(value);
333
+ // }
336
334
337
335
[ testIDProperty . setNative ] ( value : string ) : void {
338
- this . setAccessibilityIdentifier ( this . nativeViewProtected , value ) ;
339
- }
336
+ this . setAccessibilityIdentifier ( this . nativeViewProtected , value ) ;
337
+ }
340
338
341
- [ accessibilityIdentifierProperty . setNative ] ( value : string ) : void {
342
- this . setAccessibilityIdentifier ( this . nativeViewProtected , value ) ;
343
- }
339
+ [ accessibilityIdentifierProperty . setNative ] ( value : string ) : void {
340
+ this . setAccessibilityIdentifier ( this . nativeViewProtected , value ) ;
341
+ }
344
342
}
345
-
0 commit comments