@@ -65,10 +65,8 @@ export class TextField extends TextFieldBase {
6565 const variant = this . variant ;
6666 let needsTransparent = false ;
6767 if ( variant === 'filled' ) {
68-
6968 layoutIdString = 'ns_material_text_field_filled' ;
7069 } else if ( variant === 'outline' ) {
71-
7270 layoutIdString = 'ns_material_text_field_outline' ;
7371 } else {
7472 needsTransparent = true ;
@@ -328,18 +326,17 @@ export class TextField extends TextFieldBase {
328326 this . nativeTextViewProtected . setGravity ( getHorizontalGravity ( this . textAlignment ) | getVerticalGravity ( value ) ) ;
329327 }
330328
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+ // }
336334
337335 [ testIDProperty . setNative ] ( value : string ) : void {
338- this . setAccessibilityIdentifier ( this . nativeViewProtected , value ) ;
339- }
336+ this . setAccessibilityIdentifier ( this . nativeViewProtected , value ) ;
337+ }
340338
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+ }
344342}
345-
0 commit comments