animated_countdown_timer 0.1.8 copy "animated_countdown_timer: ^0.1.8" to clipboard
animated_countdown_timer: ^0.1.8 copied to clipboard

A customizable countdown timer with animations and callbacks.

example/example.dart

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

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

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Countdown Timer Example')),
        body: Center(
          child: AnimatedCountdownTimer(
            initialCount: 3,
            numFontSize: 40,
            textColor: Colors.black,
            doneTextFontSize: 35,
            doneText: "Smile",
            enableDoneText: false,
            onDone: () {
              print("Timer completed");
            },
            onStart: () {
              print('Timer started');
            },
          ),
        ),
      ),
    );
  }
}
1
likes
150
points
34
downloads

Publisher

unverified uploader

Weekly Downloads

A customizable countdown timer with animations and callbacks.

Repository (GitHub)
View/report issues

Documentation

API reference

License

unknown (license)

Dependencies

flutter

More

Packages that depend on animated_countdown_timer