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(),
    );
  }
}
97
likes
150
points
1.04k
downloads

Publisher

unverified uploader

Weekly Downloads

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

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flutter_improved_scrolling