@@ -179,8 +179,8 @@ function initializeDialogFragment() {
179
179
}
180
180
public onCreate ( savedInstanceState : android . os . Bundle ) {
181
181
super . onCreate ( savedInstanceState ) ;
182
- var ownerId = this . getArguments ( ) ?. getInt ( DOMID ) ;
183
- var options = getModalOptions ( ownerId ) ;
182
+ const ownerId = this . getArguments ( ) ?. getInt ( DOMID ) ;
183
+ const options = getModalOptions ( ownerId ) ;
184
184
// The teardown when the activity is destroyed happens after the state is saved, but is not recoverable,
185
185
// Cancel the native dialog in this case or the app will crash with subsequent errors.
186
186
if ( savedInstanceState != null && options === undefined ) {
@@ -325,7 +325,6 @@ export class View extends ViewCommon {
325
325
326
326
public _dialogFragment : androidx . fragment . app . DialogFragment ;
327
327
public _manager : androidx . fragment . app . FragmentManager ;
328
- private _isClickable : boolean ;
329
328
private touchListenerIsSet : boolean ;
330
329
private touchListener : android . view . View . OnTouchListener ;
331
330
private layoutChangeListenerIsSet : boolean ;
@@ -465,7 +464,7 @@ export class View extends ViewCommon {
465
464
466
465
public initNativeView ( ) : void {
467
466
super . initNativeView ( ) ;
468
- this . _isClickable = this . nativeViewProtected . isClickable ( ) ;
467
+
469
468
if ( this . needsOnLayoutChangeListener ( ) ) {
470
469
this . setOnLayoutChangeListener ( ) ;
471
470
}
@@ -825,8 +824,8 @@ export class View extends ViewCommon {
825
824
}
826
825
827
826
[ accessibilityEnabledProperty . setNative ] ( value : boolean ) : void {
828
- // ensure `accessibilityEnabled=false` does not disable focus for view with `isUserInteractionEnabled=true`
829
- this . nativeViewProtected . setFocusable ( ! ! value || this . isUserInteractionEnabled ) ;
827
+ this . nativeViewProtected . setFocusable ( ! ! value ) ;
828
+
830
829
if ( value ) {
831
830
updateAccessibilityProperties ( this ) ;
832
831
}
@@ -1265,15 +1264,6 @@ export class View extends ViewCommon {
1265
1264
1266
1265
export class ContainerView extends View {
1267
1266
public iosOverflowSafeArea : boolean ;
1268
-
1269
- constructor ( ) {
1270
- super ( ) ;
1271
- /**
1272
- * mark accessible as false without triggering proerty change
1273
- * equivalent to changing the default
1274
- */
1275
- this . style [ accessibilityEnabledProperty . key ] = false ;
1276
- }
1277
1267
}
1278
1268
1279
1269
export class CustomLayoutView extends ContainerView implements CustomLayoutViewDefinition {
0 commit comments