| #
85537791 |
| 02-Dec-2020 |
Łukasz Kosmaty <[email protected]> |
[expo-dev-client][ios] Fix loading bar (#11087)
# Why
Fixed loading bar on iOS.
# How
- exported mocked `RCTDevLoadingViewProtocol` module for `dev-menu` and `dev-client` (otherwise, messag
[expo-dev-client][ios] Fix loading bar (#11087)
# Why
Fixed loading bar on iOS.
# How
- exported mocked `RCTDevLoadingViewProtocol` module for `dev-menu` and `dev-client` (otherwise, messages from those modules might override messages from the app.
- made `dev-menu` loads after the app - default `RCTDevLoadingView` implementation is listening on `RCTJavaScriptDidLoadNotification` - if we tried to load two apps simultaneously, the loading view will be hidden when the one app will be loaded.
- removed from `dev-menu` and `dev-client` ability to reload.
# Test Plan
- bare-expo ✅
- vanilla RN app ✅
show more ...
|