-
-
Save bryar323/fbdbd2ee68ea4271546b362d24bb127a to your computer and use it in GitHub Desktop.
Show scrollbar in ListView
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() { | |
runApp(MyApp()); | |
} | |
class MyApp extends StatelessWidget { | |
final ScrollController _scrollController = ScrollController(); | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
home: Scaffold( | |
body: Center( | |
child: Scrollbar( | |
isAlwaysShown: true, | |
controller: _scrollController, | |
child: ListView.builder( | |
controller: _scrollController, | |
itemCount: 100, | |
itemBuilder: (context, index) { | |
return Card( | |
child: ListTile( | |
title: Text("Item: ${index + 1}"), | |
)); | |
}), | |
), | |
), | |
), | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment