File tree 2 files changed +1
-1
lines changed
2 files changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -292,7 +292,6 @@ export class TextField extends TextFieldBase {
292
292
}
293
293
[ editableProperty . setNative ] ( value : boolean ) {
294
294
this . clearFocus ( ) ;
295
- // this.nativeTextViewProtected.enabled = value;
296
295
}
297
296
[ floatingColorProperty . setNative ] ( value : Color ) {
298
297
const color = value instanceof Color ? value . ios : value ;
Original file line number Diff line number Diff line change @@ -307,6 +307,7 @@ export class TextView extends TextViewBase {
307
307
}
308
308
[ editableProperty . setNative ] ( value : boolean ) {
309
309
( this . nativeTextViewProtected as UITextView ) . editable = value ;
310
+ ( this . nativeTextViewProtected as UITextView ) . selectable = value ;
310
311
}
311
312
[ floatingColorProperty . setNative ] ( value : Color ) {
312
313
const color = value instanceof Color ? value . ios : value ;
You can’t perform that action at this time.
0 commit comments