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

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

Introduction

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

Prototype

String BORDER_RIGHT_WIDTH

To view the source code for com.facebook.react.uimanager ViewProps BORDER_RIGHT_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);
    }/*  www. j a v  a  2s  .  c  om*/
    view.setBorderWidth(SPACING_TYPES[index], width);
}