-
public interface ViewManagerResolverEnables lazy discovery of a specific ViewManager by its name.
-
-
Method Summary
Modifier and Type Method Description abstract ViewManagergetViewManager(String viewManagerName){@class UIManagerModule} class uses this method to get a ViewManager by its name. abstract List<String>getViewManagerNames()Provides a list of view manager names to register in JS as {@code UIManager.ViewManagerName}-
-
Method Detail
-
getViewManager
@Nullable() abstract ViewManager getViewManager(String viewManagerName)
{@class UIManagerModule} class uses this method to get a ViewManager by its name. This is thesame name that comes from JS by
{@code UIManager.ViewManagerName}call.
-
getViewManagerNames
abstract List<String> getViewManagerNames()
Provides a list of view manager names to register in JS as
{@code UIManager.ViewManagerName}
-
-
-
-