File tree Expand file tree Collapse file tree 2 files changed +1
-1
lines changed
Expand file tree Collapse file tree 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 {
292292 }
293293 [ editableProperty . setNative ] ( value : boolean ) {
294294 this . clearFocus ( ) ;
295- // this.nativeTextViewProtected.enabled = value;
296295 }
297296 [ floatingColorProperty . setNative ] ( value : Color ) {
298297 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 {
307307 }
308308 [ editableProperty . setNative ] ( value : boolean ) {
309309 ( this . nativeTextViewProtected as UITextView ) . editable = value ;
310+ ( this . nativeTextViewProtected as UITextView ) . selectable = value ;
310311 }
311312 [ floatingColorProperty . setNative ] ( value : Color ) {
312313 const color = value instanceof Color ? value . ios : value ;
You can’t perform that action at this time.
0 commit comments