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

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

Introduction

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

Prototype

String COLOR

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

Click Source Link

Usage

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

License:Open Source License

@ReactProp(name = ViewProps.COLOR, defaultInt = 0, customType = "color")
public void setColor(ReactEditText view, @Nullable Integer color) {
    view.setTextColor(color);
}