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 9c84832 commit 42632b9Copy full SHA for 42632b9
ReactAndroid/src/main/java/com/facebook/react/views/textinput/ReactEditText.java
@@ -99,7 +99,11 @@ public ReactEditText(Context context) {
99
// TODO: t6408636 verify if we should schedule a layout after a View does a requestLayout()
100
@Override
101
public boolean isLayoutRequested() {
102
- return false;
+ if (mContentSizeWatcher != null) {
103
+ return true;
104
+ } else {
105
+ return false;
106
+ }
107
}
108
109
0 commit comments