Want to add scroll indicator in ListView in Flutter? You can wrap your ListView in Scrollbar in your flutter application.
Here is an example:
1 2 3 4 5 6 | Scrollbar( child: ListView.builder( itemCount: 50, itemBuilder: (context, index) => ListTile(title: Text("Item= ${index + 1}"),),), ) |
If you like this question & answer and want to contribute, then write your question & answer and email to freewebmentor[@]gmail.com. Your question and answer will appear on FreeWebMentor.com and help other developers.