INNER CODE UNIT · Dart
HomeListView
mitesh77/Best-Flutter-UI-Templates · best_flutter_ui_templates/lib/home_screen.dart:178
class HomeListView extends StatelessWidget {
const HomeListView(
{Key? key,
this.listData,
this.callBack,
this.animationController,
this.animation})
: super(key: key);
final HomeList? listData;
final VoidCallback? callBack;
final AnimationController? animationController;
final Animation<double>? animation;
@override
Widget build(BuildContext context) {
return AnimatedBuilder(
animation: animationController!,