You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the keyboard is in focus on a view with a text field and WhatsNew is called, this will throw an error but continue with displaying the screen with repeated features – say, if you have feature A and B in the list, it will display you A - A - B - B as 4 items instead of 2.
The exception reads: "A RenderFlex overflowed by * pixels on the bottom."
Workaround I could find is to dismiss the keyboard before calling WhatsNew, e.g. with: FocusScope.of(context).requestFocus(new FocusNode());
The text was updated successfully, but these errors were encountered:
If the keyboard is in focus on a view with a text field and WhatsNew is called, this will throw an error but continue with displaying the screen with repeated features – say, if you have feature A and B in the list, it will display you A - A - B - B as 4 items instead of 2.
The exception reads:
"A RenderFlex overflowed by * pixels on the bottom."
Workaround I could find is to dismiss the keyboard before calling WhatsNew, e.g. with:
FocusScope.of(context).requestFocus(new FocusNode());
The text was updated successfully, but these errors were encountered: