use of com.taobao.weex.ui.view.WXEditText in project weex-example by KalicyZhou.
the class Textarea method setRows.
@WXComponentProp(name = Constants.Name.ROWS)
public void setRows(int rows) {
WXEditText text = getHostView();
if (text == null || rows <= 0) {
return;
}
text.setLines(rows);
}
Aggregations