circular_countdown 2.1.0 copy "circular_countdown: ^2.1.0" to clipboard
circular_countdown: ^2.1.0 copied to clipboard

A package that represents a circular countdown that you can use for every kind of units (days, hours, seconds, points, ...).

example/lib/main.dart

import 'package:example/countdowns/controlled_countdown.dart';
import 'package:flutter/material.dart';
import 'package:gap/gap.dart';

import 'countdowns/static_countdown.dart';
import 'countdowns/time_countdown.dart';

void main() => runApp(const MyApp());

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

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Circular Countdown',
      home: MyHomePage(),
      debugShowCheckedModeBanner: false,
    );
  }
}

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

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: const Text('CircularCountdown Example'),
        backgroundColor: Colors.transparent,
        elevation: 0,
      ),
      backgroundColor: Colors.grey[900],
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            ElevatedButton(
              onPressed: () => Navigator.of(context).push(
                MaterialPageRoute<StaticCountdownPage>(
                  builder: (context) => const StaticCountdownPage(),
                ),
              ),
              child: const Text('Static CircularCountdown'),
            ),
            const Gap(30),
            ElevatedButton(
              onPressed: () => Navigator.of(context).push(
                MaterialPageRoute<TimeCountdownPage>(
                  builder: (context) => const TimeCountdownPage(),
                ),
              ),
              child: const Text('Time CircularCountdown'),
            ),
            const Gap(30),
            ElevatedButton(
              onPressed: () => Navigator.of(context).push(
                MaterialPageRoute<ControlledCountdownPage>(
                  builder: (context) => const ControlledCountdownPage(),
                ),
              ),
              child: const Text('Controlled CircularCountdown'),
            ),
          ],
        ),
      ),
    );
  }
}
66
likes
130
pub points
90%
popularity

Publisher

unverified uploader

A package that represents a circular countdown that you can use for every kind of units (days, hours, seconds, points, ...).

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on circular_countdown