How to pass properties from native(Android) to React Native?
You can pass properties down to the React Native app by providing a custom implementation of ReactActivityDelegate in your main activity. This implementation should override getLaunchOptions to return a Bundle with the desired properties. The key part is a custom implementation of ReactActivityDelegate I always like to show you code first before dive deep the implementation. ReactRootView The guide says how to set app properties via a react root view, but it didn't mention how you can get i
You can pass properties down to the React Native app by providing a custom implementation of ReactActivityDelegate in your main activity. This implementation should override getLaunchOptions to return a Bundle with the desired properties.
The key part is a custom implementation of ReactActivityDelegate
I always like to show you code first before dive deep the implementation.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The guide says how to set app properties via a react root view, but it didn't mention how you can get it.
mReactRootView.setAppProperties(updatedProps);
I fulfilled that part in my custom react activity delegate snippets:
ReactRootView::setAppProperties
ReactRootView provides a read-write property appProperties. After appProperties is set, the React Native app is re-rendered with new properties. The update is only performed when the new updated properties differ from the previous ones.
I used it in my custom LaunchAppAdManager.java and update the app properties in the Ads status callback.
React Native App.tsx
based on the launch ads state, React app decides show Home component or Interstitial(I used a full screen gif as the loading spinner).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
No comments:
Post a Comment