sliding_indicator_listview 1.0.0 copy "sliding_indicator_listview: ^1.0.0" to clipboard
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(),
    );
  }
}
8
likes
160
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable ListView with a sliding indicator that animates and syncs with item selection. Perfect for category menus.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on sliding_indicator_listview