Skip to content

Instantly share code, notes, and snippets.

@ramansah
Last active December 8, 2018 17:45
Show Gist options
  • Save ramansah/6386883ad5fccd84085a0c597257536b to your computer and use it in GitHub Desktop.
Save ramansah/6386883ad5fccd84085a0c597257536b to your computer and use it in GitHub Desktop.
class Timer extends StatefulWidget {
@override
State<StatefulWidget> createState() {
return new TimerState();
}
}
class TimerState extends State<Timer> {
int secondsPassed = 0;
bool isActive = false;
@override
Widget build(BuildContext context) {
// Return Widget Tree
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment