Search code examples
flutterdartflutter-layoutflutter-listview

How to disable dragging down from buttom in this list view


I have a basic list view in my app And when I drag down from buttom it show the blue widget like in the vid. Is there a way to disable it? Or change it color? enter image description here


Solution

  • You can try BouncingScrollPhysics with all lists or grids or scroll view:

    //ScrollView:
    SingleChildScrollView(
          physics: BouncingScrollPhysics(),
    )
    
    //For ListView: 
    ListView.builder(
        physics: BouncingScrollPhysics(),
    }
    //GridView
    GridView.Builder(
        physics: BouncingScrollPhysics(),
    )
    
    ScrollConfiguration(
              behavior: new ScrollBehavior()..buildViewportChrome(context, null, AxisDirection.down),
              child: SingleChildScrollView()
    );