List of usage examples for com.facebook.react.uimanager ViewGroupManager subclass-usage
From source file cn.tuofeng.modalhost.ReactModalHostManager.java
/** * View manager for {@link ReactModalHostView} components. * * Emits an {@code onDismiss} event when the Dialog host is dismissed. */ public class ReactModalHostManager extends ViewGroupManager<ReactModalHostView> {
From source file com.bottomsheetbehavior.ReactNestedScrollViewManager.java
/**
* Forked from https://github.com/facebook/react-native/blob/v0.42.0/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.java
*
* View manager for {@link ReactScrollView} components.
*
* <p>Note that {@link ReactScrollView} and {@link ReactHorizontalScrollView} are exposed to JS
From source file com.helloworld.RealRecyclerItemViewManager.java
public class RealRecyclerItemViewManager extends ViewGroupManager<RealRecyclerItemView> { @Override public RealRecyclerItemView createViewInstance(ThemedReactContext context) { return new RealRecyclerItemView(context); }
From source file com.helloworld.RealRecyclerViewManager.java
public class RealRecyclerViewManager extends ViewGroupManager<RealRecyclerView> { @Override public String getName() { return RealRecyclerView.class.getSimpleName(); }
From source file com.horcrux.svg.RNSVGRenderableViewManager.java
/** * ViewManager for all shadowed RNSVG views: Group, Path and Text. Since these never get rendered * into native views and don't need any logic (all the logic is in {@link RNSVGSvgView}), this * "stubbed" ViewManager is used for all of them. */ public class RNSVGRenderableViewManager extends ViewGroupManager<ViewGroup> {
From source file com.horcrux.svg.RNSVGSvgViewManager.java
/** * ViewManager for RNSVGSvgView React views. Renders as a {@link RNSVGSvgView} and handles * invalidating the native view on shadow view updates happening in the underlying tree. */ public class RNSVGSvgViewManager extends ViewGroupManager<RNSVGSvgView> {
From source file com.qiji.view.viewpager.ReactViewPagerManager.java
public class ReactViewPagerManager extends ViewGroupManager<ReactViewPager> { private static final String REACT_CLASS = "AndroidViewPager"; @Override public String getName() {
From source file com.reactnative.swiper.viewpager.ReactViewPagerManager.java
/** * Instance of {@link ViewManager} that provides native {@link ViewPager} view. */ @ReactModule(name = ReactViewPagerManager.REACT_CLASS) public class ReactViewPagerManager extends ViewGroupManager<ReactViewPager> {
From source file com.reactnativeandroiddesignsupport.ReactNestedScrollViewManager.java
/**
* View manager for {@link ReactScrollView} components.
*
* <p>Note that {@link ReactScrollView} and {@link ReactHorizontalScrollView} are exposed to JS
* as a single ScrollView component, configured via the {@code horizontal} boolean property.
*/
From source file com.rnnestedscrollview.ReactNestedScrollViewManager.java
/**
* Forked from https://github.com/facebook/react-native/blob/0.57-stable/ReactAndroid/src/main/java/com/facebook/react/views/scroll/ReactScrollViewManager.java
*
* View manager for {@link ReactNestedScrollView} components.
*
* <p>Note that {@link ReactNestedScrollView} and {@link ReactHorizontalScrollView} are exposed to JS