sliding_indicator_listview 1.0.0
sliding_indicator_listview: ^1.0.0 copied to clipboard
A customizable ListView with a sliding indicator that animates and syncs with item selection. Perfect for category menus.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'ProductScreen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Sliding Indicator ListView Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: const ProductScreen(),
);
}
}