List of usage examples for com.facebook.react.views.text DefaultStyleValuesUtil getDefaultTextColorHighlight
public static int getDefaultTextColorHighlight(Context context)
From source file:fr.bamlab.textinput.ReactTextInputManager.java
License:Open Source License
@ReactProp(name = "selectionColor", customType = "Color") public void setSelectionColor(ReactEditText view, @Nullable Integer color) { if (color == null) { view.setHighlightColor(DefaultStyleValuesUtil.getDefaultTextColorHighlight(view.getContext())); } else {/*w w w .ja v a 2 s . c om*/ view.setHighlightColor(color); } }