如何自定义循环倒计时的动画

过量B12

我想自定义它,CircularCountdownTimer以便您可以在没有时间限制的情况下运行它。一小时后,环应完全填满,动画应在 1 小时后从 0 重新开始。有谁知道如何做到这一点?

这是我的代码

import 'package:circular_countdown_timer/circular_countdown_timer.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      title: 'Flutter Demo',
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({Key? key, required this.title}) : super(key: key);

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  CountDownController controller = CountDownController();

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            CircularCountDownTimer(
              width: 300,
              height: 300,
              duration: 60,
              fillColor: Colors.blue,
              ringColor: Colors.blue.withOpacity(0.25),
              autoStart: false,
              controller: controller,
            ),
            const SizedBox(
              height: 100,
            ),
            Row(
              mainAxisAlignment: MainAxisAlignment.spaceEvenly,
              children: [
                TextButton(
                  onPressed: () {
                    controller.start();
                  },
                  child: const Text("Start"),
                ),
                TextButton(
                  onPressed: () {
                    controller.pause();
                  },
                  child: const Text("Pause"),
                ),
              ],
            ),
          ],
        ),
      ),
    );
  }
}
耶辛谢赫

您可以使用onComplete重新启动动画。

CircularCountDownTimer(
  width: 300,
  height: 300,
  duration: 60, // it is on seconds,
  fillColor: Colors.blue,
  ringColor: Colors.blue.withOpacity(0.25),
  autoStart: false,
  controller: controller,
  onComplete: () {
    controller.restart();
  },
),

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章