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?
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()
);