Skip to content

Instantly share code, notes, and snippets.

@Rahiche
Created December 13, 2018 19:49
Show Gist options
  • Save Rahiche/fb695d99f8960b24f209e87f12416896 to your computer and use it in GitHub Desktop.
Save Rahiche/fb695d99f8960b24f209e87f12416896 to your computer and use it in GitHub Desktop.
floatingActionButton: FloatingActionButton(onPressed: () {
final cd = CountdownTimer(Duration(seconds: 10), Duration(seconds: 1));
cd.listen((data) {
setState(() {
elapsed = cd.elapsed.inSeconds;
});
}, onDone: () {
cd.cancel();
});
}),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment