stop_watch_timer 3.2.0 stop_watch_timer: ^3.2.0 copied to clipboard
Simple CountUp timer / CountDown timer. It easily create app of stopwatch.
import 'package:flutter/material.dart';
import 'package:stop_watch_timer_example/count_down_timer_page.dart';
import 'package:stop_watch_timer_example/count_up_timer_page.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: MainPage(),
);
}
}
class MainPage extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Padding(
padding: const EdgeInsets.symmetric(horizontal: 4),
child: FilledButton(
onPressed: () {
CountUpTimerPage.navigatorPush(context);
},
child: const Text('Count Up Timer'),
),
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 4),
child: FilledButton(
onPressed: () {
CountDownTimerPage.navigatorPush(context);
},
child: const Text('Count Down Timer'),
),
),
],
),
),
);
}
}