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

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

Introduction

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

Prototype

String NUMBER_OF_LINES

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

Click Source Link

Usage

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

License:Open Source License

@ReactProp(name = ViewProps.NUMBER_OF_LINES, defaultInt = 1)
public void setNumLines(ReactEditText view, int numLines) {
    view.setLines(numLines);
}