Content of Listview gets drawn over UI elements below in Flutter

110

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

Execute in command line shell

flutter channel dev
flutter doctor
Share:
110
Daniel Stephens
Author by

Daniel Stephens

Updated on December 01, 2022

Comments

  • Daniel Stephens
    Daniel Stephens over 1 year

    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
    Daniel Stephens almost 6 years
    Excellent! Seems my problem got fixed. Thanks for the help (again) :-)