flutter_custom_timer

A customizable countdown timer widget for Flutter apps.

License: MIT


✨ Features

  • Countdown timer widget
  • Start, pause, reset functionality
  • Fully customizable UI
  • Use in chat apps, booking apps, OTP screens, and more

🧪 Getting Started

Add dependency in your pubspec.yaml:

dependencies:
  flutter_custom_timer:
    git:
      url: https://github.com/jaimru123456/flutter_custom_timer


import 'package:flutter_custom_timer/flutter_custom_timer.dart';

CountdownTimer(
  duration: Duration(minutes: 1),
  textStyle: TextStyle(fontSize: 40, color: Colors.red),
  onFinish: () {
    ScaffoldMessenger.of(context).showSnackBar(
      SnackBar(content: Text("Timer finished!")),
    );
  },
),