Example usage for com.facebook.react.uimanager ReactClippingViewGroupHelper PROP_REMOVE_CLIPPED_SUBVIEWS

List of usage examples for com.facebook.react.uimanager ReactClippingViewGroupHelper PROP_REMOVE_CLIPPED_SUBVIEWS

Introduction

In this page you can find the example usage for com.facebook.react.uimanager ReactClippingViewGroupHelper PROP_REMOVE_CLIPPED_SUBVIEWS.

Prototype

String PROP_REMOVE_CLIPPED_SUBVIEWS

To view the source code for com.facebook.react.uimanager ReactClippingViewGroupHelper PROP_REMOVE_CLIPPED_SUBVIEWS.

Click Source Link

Usage

From source file:com.bottomsheetbehavior.ReactNestedScrollViewManager.java

License:Open Source License

@ReactProp(name = ReactClippingViewGroupHelper.PROP_REMOVE_CLIPPED_SUBVIEWS)
public void setRemoveClippedSubviews(ReactNestedScrollView view, boolean removeClippedSubviews) {
    view.setRemoveClippedSubviews(removeClippedSubviews);
}

From source file:com.zulipmobile.AnchorScrollViewManager.java

License:Open Source License

@ReactProp(name = ReactClippingViewGroupHelper.PROP_REMOVE_CLIPPED_SUBVIEWS)
public void setRemoveClippedSubviews(AnchorScrollView view, boolean removeClippedSubviews) {
    view.setRemoveClippedSubviews(removeClippedSubviews);
}