use of com.reactnativenavigation.views.component.ComponentViewCreator in project react-native-navigation by wix.
the class LayoutFactory method createComponent.
private ViewController<?> createComponent(LayoutNode node) {
String id = node.id;
String name = node.data.optString("name");
return new ComponentViewController(activity, childRegistry, id, name, new ComponentViewCreator(reactInstanceManager), parseOptions(node.getOptions()), new Presenter(activity, defaultOptions), new ComponentPresenter(defaultOptions));
}
Aggregations