scrollview_observer 1.0.1 scrollview_observer: ^1.0.1 copied to clipboard
Gets all the child widgets those are displaying in listView.
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(),
);
}
}