use of com.reactnativenavigation.params.parsers.LightBoxParamsParser in project react-native-navigation by wix.
the class NavigationReactModule method showLightBox.
@ReactMethod
public void showLightBox(final ReadableMap params) {
LightBoxParams lbp = new LightBoxParamsParser(BundleConverter.toBundle(params)).parse();
NavigationCommandsHandler.showLightBox(lbp);
}
Aggregations