Reputation: 1231
Very simply, every time I try to use text fields in a list view as the body of a Scaffold and the Text field takes focus, the keyboard appears but the text field then disappears from view.
Is there a particular parameter that I have to set such that the Text field does not disappear?
return new Scaffold(
body: new ListView(
children: <Widget>[
new TextField()
],
),
);
Upvotes: 0
Views: 61
Reputation: 162
you can read about it here https://github.com/flutter/flutter/issues/10826
also a workaround, you can use: https://gist.github.com/collinjackson/50172e3547e959cba77e2938f2fe5ff5
Upvotes: 1