/simple_count_down

Simple count down (timer) for Flutter

Primary LanguageDartMIT LicenseMIT

Simple Count Down

Simple Count Down for Flutter

Using for create a simple timer

How to use

CountDown(
    seconds: 100,
    onTimer: () {
        // Make some logic
        setState(() {
            // Such like hide timer and show other widget
            _showTimer = false;
        });
    },
),