react-native-screens 4.9.1 → 4.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,12 +17,6 @@
17
17
 
18
18
  @implementation RNSFullWindowOverlayContainer
19
19
 
20
- // Needed because of this: https://github.com/facebook/react-native/pull/37274
21
- + (void)load
22
- {
23
- [super load];
24
- }
25
-
26
20
  - (instancetype)initWithFrame:(CGRect)frame
27
21
  {
28
22
  if (self = [super initWithFrame:frame]) {
@@ -86,6 +80,12 @@
86
80
  #endif // RCT_NEW_ARCH_ENABLED
87
81
  }
88
82
 
83
+ // Needed because of this: https://github.com/facebook/react-native/pull/37274
84
+ + (void)load
85
+ {
86
+ [super load];
87
+ }
88
+
89
89
  #ifdef RCT_NEW_ARCH_ENABLED
90
90
  - (instancetype)init
91
91
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-screens",
3
- "version": "4.9.1",
3
+ "version": "4.9.2",
4
4
  "description": "Native navigation primitives for your React Native app.",
5
5
  "scripts": {
6
6
  "submodules": "git submodule update --init --recursive && (cd react-navigation && yarn && yarn build && cd ../)",