We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e592d6f commit 355d1feCopy full SHA for 355d1fe
ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactTextInputLocalData.java
@@ -7,6 +7,7 @@
7
8
package com.facebook.react.views.textinput;
9
10
+import android.graphics.Color;
11
import android.os.Build;
12
import android.text.SpannableStringBuilder;
13
import android.util.TypedValue;
@@ -48,6 +49,7 @@ public void apply(EditText editText) {
48
49
editText.setMinLines(mMinLines);
50
editText.setMaxLines(mMaxLines);
51
editText.setInputType(mInputType);
52
+ editText.setBackgroundColor(Color.TRANSPARENT);
53
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
54
editText.setBreakStrategy(mBreakStrategy);
55
}
0 commit comments