Quantcast
Channel: Active questions tagged listview - Stack Overflow
Viewing all articles
Browse latest Browse all 611

How to add scroll indicator in ListView

$
0
0

Is there any way to show the scroll indicator on the ListView?

Here is my basic code:

ListView.builder(  itemCount: 50,  itemBuilder: (context, index) => ListTile(title: Text("Item= ${index + 1}"),),)

Viewing all articles
Browse latest Browse all 611

Trending Articles