Keyboard overflows TextField creating yellow/black stripes #13339
Closed
Description
Using the code below I got the error in the page. Anyway to tell the app that it's ok for the keyboard to hide widgets? Thanks.
@override
Widget build(BuildContext context) {
return new Padding (
padding: const EdgeInsets.all(15.0),
child: new Column (
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget> [
new TextField(
controller: widget._NameController,
maxLines: 1,
decoration: new InputDecoration(
labelText: 'Name'
),
),
new TextField(
//controller: widget._TextController,
decoration: new InputDecoration(
labelText: 'Deadline'
),
),
new TextField(
//controller: widget._TextController,
decoration: new InputDecoration(
labelText: 'Amount'
),
),
new TextField(
controller: widget._DescriptionController,
decoration: new InputDecoration(
labelText: 'Description'
),
),
]
),
);
}
Metadata
Assignees
Labels
No labels