timer_smooth_page_indicator 1.0.2 copy "timer_smooth_page_indicator: ^1.0.2" to clipboard
timer_smooth_page_indicator: ^1.0.2 copied to clipboard

A Flutter package for smooth, timer-based page indicators with customizable styling and transitions.

example/main.dart

import 'package:flutter/material.dart';
import 'package:timer_smooth_page_indicator/timer_smooth_page_indicator.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        body: Center(
          child: TimerSmoothPageIndicator(
            totalLength: 10,
            durationInSeconds: 3,
            indicatorWidth: 25,
            activeIndicatorWidth: 45,
            indicatorHeight: 8,
            indicatorColor: const Color(0xFFE0E0E0),
            progressColor: Colors.black,
            spacing: 4,
            curve: Curves.linear,
          ),
        ),
      ),
    );
  }
}
3
likes
160
points
48
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for smooth, timer-based page indicators with customizable styling and transitions.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on timer_smooth_page_indicator