I am new to Flutter, and I want to remove the animation that comes when I finished scrolling a ListView in a Flutter App. Here is my code snippet.
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: Text("My First App"),
),
body: Column(
children: <Widget>[
Question(questions[tempIndex]["questionText"]),
Expanded(
child: Container(
height: double.infinity,
child:
ListView.builder(
itemCount: questions[tempIndex]["answers"].length,
itemBuilder: (context, position) {
return Answer(this.answerQuestion,questions[tempIndex]["answers"][position]);
},
),
),
)
],
),
),
);
}