stop_watch_timer 3.1.1 copy "stop_watch_timer: ^3.1.1" to clipboard
stop_watch_timer: ^3.1.1 copied to clipboard

Simple CountUp timer / CountDown timer. It easily create app of stopwatch.

example/lib/main.dart

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'),
              ),
            ),
          ],
        ),
      ),
    );
  }
}
248
likes
140
pub points
98%
popularity

Publisher

verified publisherneverjp.com

Simple CountUp timer / CountDown timer. It easily create app of stopwatch.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

rxdart

More

Packages that depend on stop_watch_timer