flutter_improved_scrolling 0.0.3 flutter_improved_scrolling: ^0.0.3 copied to clipboard
Attempt to implement better scrolling for Flutter Web and Desktop. Includes keyboard, MButton and custom mouse wheel scrolling.
import 'package:flutter/material.dart';
import 'scrollable_page.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'middle_click_scroll_example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
debugShowCheckedModeBanner: false,
home: const ScrollablePage(),
);
}
}