首页 > 解决方案 > Flutter:显示天、小时、分钟和秒的倒计时小部件

问题描述

我正在尝试构建一个可显示剩余天数、小时数、分钟数和秒数的扩展小部件(参见屏幕截图)。

我怎样才能做到这一点?

我已经浏览了一大堆颤振文档,但仍然无法正确创建它..

我正在尝试构建的小部件的屏幕截图

谢谢您的帮助!

标签: flutterdartcountdowntimer

解决方案


您可以在下面复制粘贴运行完整代码
您可以使用包https://pub.dev/packages/flutter_countdown_timer

代码片段

CountdownTimer(
            endTime: 1594829147719,
            defaultDays: "==",
            defaultHours: "--",
            defaultMin: "**",
            defaultSec: "++",
            daysSymbol: "days",
            hoursSymbol: "hrs ",
            minSymbol: "min ",
            secSymbol: "sec",
            daysTextStyle: TextStyle(fontSize: 30, color: Colors.red),
            hoursTextStyle: TextStyle(fontSize: 30, color: Colors.orange),
            minTextStyle: TextStyle(fontSize: 30, color: Colors.lightBlue),
            secTextStyle: TextStyle(fontSize: 30, color: Colors.pink),
            daysSymbolTextStyle:
                TextStyle(fontSize: 20, color: Colors.green),
            hoursSymbolTextStyle:
                TextStyle(fontSize: 20, color: Colors.amberAccent),
            minSymbolTextStyle:
                TextStyle(fontSize: 20, color: Colors.black),
            secSymbolTextStyle:
                TextStyle(fontSize: 20, color: Colors.deepOrange))

工作演示

在此处输入图像描述

完整代码

import 'package:flutter/material.dart';
import 'package:flutter_countdown_timer/countdown_timer.dart';

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
        visualDensity: VisualDensity.adaptivePlatformDensity,
      ),
      home: MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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

  final String title;

  @override
  _MyHomePageState createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  int _counter = 0;

  void _incrementCounter() {
    setState(() {
      _counter++;
    });
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            CountdownTimer(
                endTime: 1594829147719,
                defaultDays: "==",
                defaultHours: "--",
                defaultMin: "**",
                defaultSec: "++",
                daysSymbol: "days",
                hoursSymbol: "hrs ",
                minSymbol: "min ",
                secSymbol: "sec",
                daysTextStyle: TextStyle(fontSize: 30, color: Colors.red),
                hoursTextStyle: TextStyle(fontSize: 30, color: Colors.orange),
                minTextStyle: TextStyle(fontSize: 30, color: Colors.lightBlue),
                secTextStyle: TextStyle(fontSize: 30, color: Colors.pink),
                daysSymbolTextStyle:
                    TextStyle(fontSize: 20, color: Colors.green),
                hoursSymbolTextStyle:
                    TextStyle(fontSize: 20, color: Colors.amberAccent),
                minSymbolTextStyle:
                    TextStyle(fontSize: 20, color: Colors.black),
                secSymbolTextStyle:
                    TextStyle(fontSize: 20, color: Colors.deepOrange)),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _incrementCounter,
        tooltip: 'Increment',
        child: Icon(Icons.add),
      ),
    );
  }
}

推荐阅读