1

Could someone help me with the following issue? I am not sure if this is a bug or intended behaviour. I have the following layout:

Column(
    Flexible( ListView[..] )

    Row(
        Flexible(
            TextField(..) <-- input field
        ),
        Container(Icon[]) <-- button

)

Scrolling very very quickly makes the content of my ListView getting drawn over the Row in the other container? Could this be a bug in Flutters drawing engine or did I miss to set some boundaries for my ListView?


Normal / expected layout:

enter image description here


After scrolling very quickly:

enter image description here

Daniel Stephens
  • 2,371
  • 8
  • 34
  • 86

1 Answers1

1

I believe this is an issue already fixed in dev channel.

Execute in command line shell

flutter channel dev
flutter doctor
Günter Zöchbauer
  • 623,577
  • 216
  • 2,003
  • 1,567