Skip to content

Instantly share code, notes, and snippets.

View bryar323's full-sized avatar

bryar mohamad bryar323

  • kurdstan from iraq
View GitHub Profile
@dhuma1981
dhuma1981 / scrollbar_demo.dart
Last active January 12, 2021 14:44
Show scrollbar in ListView
import 'package:flutter/material.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
final ScrollController _scrollController = ScrollController();
@override