Answers for "flutter listview blue animation remove"

0

flutter listview blue animation remove

// change physics with BouncingScrollPhysics()

 ListView.separated(
	physics: BouncingScrollPhysics(), // here
	separatorBuilder: (BuildContext context, int index) {
		return SizedBox(
			height: 8,
          );
		},
	itemCount: zones.length,
	itemBuilder: (_, i) => cardStyleZone(zones[i]),
),
Posted by: Guest on February-07-2021

Code answers related to "flutter listview blue animation remove"

Browse Popular Code Answers by Language