flutter_improved_scrolling 0.0.3 copy "flutter_improved_scrolling: ^0.0.3" to clipboard
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.

example/lib/main.dart

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(),
    );
  }
}
94
likes
130
pub points
89%
popularity

Publisher

unverified uploader

Attempt to implement better scrolling for Flutter Web and Desktop. Includes keyboard, MButton and custom mouse wheel scrolling.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_improved_scrolling