stop_watch_timer 2.0.0 stop_watch_timer: ^2.0.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: ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.pinkAccent,
padding: const EdgeInsets.all(4),
shape: const StadiumBorder(),
),
onPressed: () {
CountUpTimerPage.navigatorPush(context);
},
child: const Padding(
padding: EdgeInsets.symmetric(horizontal: 16),
child: Text(
'Go To CountUpTimer',
style: TextStyle(color: Colors.white),
),
),
),
),
Padding(
padding: const EdgeInsets.symmetric(horizontal: 4),
child: ElevatedButton(
style: ElevatedButton.styleFrom(
foregroundColor: Colors.pinkAccent,
padding: const EdgeInsets.all(4),
shape: const StadiumBorder(),
),
onPressed: () {
CountDownTimerPage.navigatorPush(context);
},
child: const Padding(
padding: EdgeInsets.symmetric(horizontal: 16),
child: Text(
'Go To CountDownTimer',
style: TextStyle(color: Colors.white),
),
),
),
),
],
),
),
);
}
}