Example usage for com.facebook.react.uimanager ViewProps BORDER_BOTTOM_WIDTH

List of usage examples for com.facebook.react.uimanager ViewProps BORDER_BOTTOM_WIDTH

Introduction

In this page you can find the example usage for com.facebook.react.uimanager ViewProps BORDER_BOTTOM_WIDTH.

Prototype

String BORDER_BOTTOM_WIDTH

To view the source code for com.facebook.react.uimanager ViewProps BORDER_BOTTOM_WIDTH.

Click Source Link

Usage

From source file:com.rnnestedscrollview.ReactNestedScrollViewManager.java

License:MIT License

@ReactPropGroup(names = { ViewProps.BORDER_WIDTH, ViewProps.BORDER_LEFT_WIDTH, ViewProps.BORDER_RIGHT_WIDTH,
        ViewProps.BORDER_TOP_WIDTH, ViewProps.BORDER_BOTTOM_WIDTH, }, defaultFloat = YogaConstants.UNDEFINED)
public void setBorderWidth(ReactNestedScrollView view, int index, float width) {
    if (!YogaConstants.isUndefined(width)) {
        width = PixelUtil.toPixelFromDIP(width);
    }/*from   ww  w.  j a  va 2 s.  com*/
    view.setBorderWidth(SPACING_TYPES[index], width);
}