List of usage examples for com.facebook.react.uimanager ViewProps BORDER_TOP_WIDTH
String BORDER_TOP_WIDTH
To view the source code for com.facebook.react.uimanager ViewProps BORDER_TOP_WIDTH.
Click Source Link
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 va2 s . co m
view.setBorderWidth(SPACING_TYPES[index], width);
}