scroll_mate 1.0.1
scroll_mate: ^1.0.1 copied to clipboard
Multiple scroll controller work synchronization and define how many line to display
import 'package:flutter/material.dart';
import 'src/view/interest_view.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Scroll Mate',
theme: ThemeData(
primarySwatch: Colors.blue,
scaffoldBackgroundColor: Colors.white,
appBarTheme: const AppBarTheme(
titleTextStyle: TextStyle(
fontSize: 20, color: Colors.black, fontWeight: FontWeight.bold),
backgroundColor: Colors.white,
elevation: 0,
),
),
debugShowCheckedModeBanner: false,
home: const InterestView(),
);
}
}