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

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

Introduction

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

Prototype

String FONT_SIZE

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

Click Source Link

Usage

From source file:fr.bamlab.textinput.ReactTextInputManager.java

License:Open Source License

@ReactProp(name = ViewProps.FONT_SIZE, defaultFloat = ViewDefaults.FONT_SIZE_SP)
public void setFontSize(ReactEditText view, float fontSize) {
    view.setTextSize(TypedValue.COMPLEX_UNIT_PX, (int) Math.ceil(PixelUtil.toPixelFromSP(fontSize)));
}