1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 |
import 'dart:async'; import 'package:flutter/cupertino.dart'; import 'package:flutter/material.dart'; void main() => runApp(const MyApp()); class MyApp extends StatelessWidget { const MyApp({Key? key}) : super(key: key); // This widget is the root of your application. @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue, ), home: Scaffold( appBar: AppBar( title: const Text('倒计时'), ), body: const MyHomePage(), )); } } class MyHomePage extends StatefulWidget { const MyHomePage({Key? key}) : super(key: key); @override State<MyHomePage> createState() => _MyHomePageState(); } class _MyHomePageState extends State<MyHomePage> { late Duration time; var seconds = 0; Timer? countdownTimer; @override Widget build(BuildContext context) { return Center( child: Column( children: <Widget>[ ElevatedButton( child: const Text('定时'), onPressed: () { showCupertinoModalPopup<void>( context: context, builder: (BuildContext context) { return Container( height: 200, color: CupertinoColors.white, child: DefaultTextStyle( style: const TextStyle( color: CupertinoColors.black, fontSize: 22.0, ), child: CupertinoTimerPicker( //initialTimerDuration: time, //minuteInterval: 5, mode: CupertinoTimerPickerMode.ms, onTimerDurationChanged: (Duration newTimer) { setState(() { time = newTimer; seconds = time.inSeconds; // flag = true; }); }, ), )); }, ); }, ), ElevatedButton( child: const Text('开始倒计时'), onPressed: () { if (countdownTimer != null) { return; } countdownTimer = Timer.periodic(const Duration(seconds: 1), (timer) { setState(() { if (seconds > 0) { seconds--; } else { countdownTimer?.cancel(); countdownTimer = null; } }); }); }, ), Text( '倒计时: $seconds 秒', style: const TextStyle(fontSize: 30), ), ], ), ); } @override void dispose() { countdownTimer?.cancel(); countdownTimer = null; super.dispose(); } } |