We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4438732 commit b1ec167Copy full SHA for b1ec167
ios/RNSFullWindowOverlay.mm
@@ -15,6 +15,15 @@
15
16
@implementation RNSFullWindowOverlayContainer
17
18
+- (instancetype)initWithFrame:(CGRect)frame
19
+{
20
+ self = [super initWithFrame:frame];
21
+ if (self) {
22
+ self.accessibilityViewIsModal = YES;
23
+ }
24
+ return self;
25
+}
26
+
27
- (BOOL)pointInside:(CGPoint)point withEvent:(UIEvent *)event
28
{
29
for (UIView *view in [self subviews]) {
@@ -127,6 +136,9 @@ - (void)didMoveToWindow
127
136
[_touchHandler detachFromView:_container];
128
137
}
129
138
} else {
139
+ if (_container != nil) {
140
+ UIAccessibilityPostNotification(UIAccessibilityLayoutChangedNotification, _container);
141
130
142
if (_touchHandler == nil) {
131
143
#ifdef RCT_NEW_ARCH_ENABLED
132
144
_touchHandler = [RCTSurfaceTouchHandler new];
0 commit comments