scrollview_observer 1.19.1 copy "scrollview_observer: ^1.19.1" to clipboard
scrollview_observer: ^1.19.1 copied to clipboard

A widget for observing data related to the child widgets being displayed in a ScrollView.

example/lib/main.dart

/*
 * @Author: LinXunFeng linxunfeng@yeah.net
 * @Repo: https://github.com/LinXunFeng/flutter_scrollview_observer
 * @Date: 2022-05-28 12:32:34
 */
import 'package:flutter/material.dart';

import 'features/home/home_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: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const HomePage(),
    );
  }
}
151
likes
140
pub points
96%
popularity

Publisher

verified publisherfullstackaction.com

A widget for observing data related to the child widgets being displayed in a ScrollView.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on scrollview_observer