scroll_mate 1.0.0 copy "scroll_mate: ^1.0.0" to clipboard
scroll_mate: ^1.0.0 copied to clipboard

Multiple scroll controller work synchronization and define how many line to display

example/lib/main.dart

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(),
    );
  }
}
13
likes
150
points
28
downloads

Publisher

verified publisheryusufnadaroglu.com

Weekly Downloads

Multiple scroll controller work synchronization and define how many line to display

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on scroll_mate