jared-nelsen
jared-nelsen

Reputation: 1231

Textboxes Obscured by Keyboard

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

Answers (1)

Related Questions