scrolls_to_top 2.1.1 scrolls_to_top: ^2.1.1 copied to clipboard
A dart package for working with scrolls-to-top iOS feature. Easy to use
import 'package:example/home_page.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(title: 'Scroll to top', home: HomePage());
}
}