Skip to content

Keyboard overflows TextField creating yellow/black stripes #13339

@heromeister

Description

@heromeister

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.

image

@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

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions