当前位置: 首页 > news >正文

校园网站建设培训体会html家乡网站设计

校园网站建设培训体会,html家乡网站设计,网站可以自己做服务器么,linux做网站服务器Flutter实现倒计时功能 发布时间:2023/05/12 本文实例为大家分享了Flutter实现倒计时功能的具体代码,供大家参考,具体内容如下 有一个需求,需要在页面进行显示倒计时,倒计时结束后,做相应的逻辑处理。 实…

Flutter实现倒计时功能
发布时间:2023/05/12
本文实例为大家分享了Flutter实现倒计时功能的具体代码,供大家参考,具体内容如下

有一个需求,需要在页面进行显示倒计时,倒计时结束后,做相应的逻辑处理。

实现思路:在Flutter中,Timer.periodic提供了循环功能,查看函数定义:

factory Timer.periodic(Duration duration, void callback(Timer timer))

第一个参数就是时间间隔,第二个参数就是事件处理回调。

由于后台返回的是秒数,所以需要根据总秒数计算小时,分钟,秒。同时,当不满一个小时时,只显示分钟和秒数,当分钟和秒数只有一个数时(比如1分8秒,显示为01:08)前面加“0”处理。

完整代码:

import 'package:flutter/material.dart';
import 'dart:async';class CounterDownPage extends StatefulWidget {@override_CounterDownPageState createState() => _CounterDownPageState();
}class _CounterDownPageState extends State<CounterDownPage> {// 用来在布局中显示相应的剩余时间String remainTimeStr = '';Timer _timer;//倒计时 void startCountDown(int time) {// 重新计时的时候要把之前的清除掉if (_timer != null) {if (_timer.isActive) {_timer.cancel();_timer = null;}}if (time <= 0) {return;}var countTime = time;const repeatPeriod = const Duration(seconds: 1);_timer = Timer.periodic(repeatPeriod, (timer) { if (countTime <= 0) {timer.cancel();timer = null;//待付款倒计时结束,可以在这里做相应的操作return;}countTime--;//外面传进来的单位是秒,所以需要根据总秒数,计算小时,分钟,秒int hour = (countTime ~/ 3600) % 24;//如果不止24小时的就不用%24int minute = countTime % 3600 ~/60;int second = countTime % 60;var str = '';if (hour > 0) {str = str + hour.toString()+':';}if (minute / 10 < 1) {//当只有个位数时,给前面加“0”,实现效果:“:01”,":02"str = str + '0' + minute.toString() + ":";} else {str = str + minute.toString() + ":";}if (second / 10 < 1) {str = str + '0' + second.toString();} else {str = str + second.toString();}setState(() {remainTimeStr = str;});});}@overridevoid initState() {super.initState();//开始倒计时,这里传入的是秒数startCountDown(5000);}@overridevoid dispose() {super.dispose();if (_timer != null) {if (_timer.isActive) {_timer.cancel();_timer = null;}}}@overrideWidget build(BuildContext context) {return Scaffold(appBar: AppBar(title: Text("倒计时"),),body: Center(child: Row(mainAxisAlignment: MainAxisAlignment.center,children: [Text("剩余", style: TextStyle(fontSize: 18,color: Color.fromRGBO(255, 111, 50, 1),fontWeight: FontWeight.bold),),Text(remainTimeStr.length > 0 ? remainTimeStr: "--", style: TextStyle(fontSize: 18,color: Color.fromRGBO(255, 111, 50, 1),fontWeight: FontWeight.bold),),],),),);}
}

在这里插入图片描述
服务器返回的时间戳87392,现在的时间戳+87392 现在的时间戳,两者的时间戳相差二十多个小时,也就是说87392就是秒数,直接传秒数到上面的startCountDown方法即可。


文章转载自:
http://dinncowabbly.tqpr.cn
http://dinncohuppah.tqpr.cn
http://dinncoreproducer.tqpr.cn
http://dinncoimpubic.tqpr.cn
http://dinncoleonis.tqpr.cn
http://dinncoparaffine.tqpr.cn
http://dinncogawain.tqpr.cn
http://dinncoaphakia.tqpr.cn
http://dinncorustic.tqpr.cn
http://dinncoantiphonic.tqpr.cn
http://dinncokenaf.tqpr.cn
http://dinnconarcotist.tqpr.cn
http://dinncodiscount.tqpr.cn
http://dinncomethoxychlor.tqpr.cn
http://dinncochapstick.tqpr.cn
http://dinncoretrainee.tqpr.cn
http://dinncocrafty.tqpr.cn
http://dinncoirreligiously.tqpr.cn
http://dinncomacrodontia.tqpr.cn
http://dinncotaurin.tqpr.cn
http://dinncotransmissive.tqpr.cn
http://dinncobigoted.tqpr.cn
http://dinncopeg.tqpr.cn
http://dinncokraut.tqpr.cn
http://dinncoresist.tqpr.cn
http://dinncoshape.tqpr.cn
http://dinncovaricelloid.tqpr.cn
http://dinncoleptodactyl.tqpr.cn
http://dinncosabayon.tqpr.cn
http://dinncomontanic.tqpr.cn
http://dinncoflurazepam.tqpr.cn
http://dinncowrongdoing.tqpr.cn
http://dinncoavocat.tqpr.cn
http://dinncokatyusha.tqpr.cn
http://dinncoduddy.tqpr.cn
http://dinncouneven.tqpr.cn
http://dinncocodex.tqpr.cn
http://dinncoplasticene.tqpr.cn
http://dinncohexose.tqpr.cn
http://dinncohypomotility.tqpr.cn
http://dinncoetherify.tqpr.cn
http://dinncosward.tqpr.cn
http://dinncoagana.tqpr.cn
http://dinncotele.tqpr.cn
http://dinncogopher.tqpr.cn
http://dinncoclerestory.tqpr.cn
http://dinncocunt.tqpr.cn
http://dinncohireable.tqpr.cn
http://dinncolexigraphy.tqpr.cn
http://dinncomalaise.tqpr.cn
http://dinncocovary.tqpr.cn
http://dinncopoppa.tqpr.cn
http://dinncolockram.tqpr.cn
http://dinncochapleted.tqpr.cn
http://dinncoinsert.tqpr.cn
http://dinncoattabal.tqpr.cn
http://dinncotrounce.tqpr.cn
http://dinncopentamerous.tqpr.cn
http://dinncovindicatory.tqpr.cn
http://dinncopinxit.tqpr.cn
http://dinncounbelievably.tqpr.cn
http://dinncoboing.tqpr.cn
http://dinncounwoven.tqpr.cn
http://dinncosarin.tqpr.cn
http://dinncothicken.tqpr.cn
http://dinncojoining.tqpr.cn
http://dinncoinkstone.tqpr.cn
http://dinncogleba.tqpr.cn
http://dinncotrustify.tqpr.cn
http://dinncocolorway.tqpr.cn
http://dinncoembryologist.tqpr.cn
http://dinncoorcish.tqpr.cn
http://dinncounderemphasize.tqpr.cn
http://dinncodysprosium.tqpr.cn
http://dinncoebullient.tqpr.cn
http://dinncobrush.tqpr.cn
http://dinncoree.tqpr.cn
http://dinncotrustiness.tqpr.cn
http://dinncotriallelic.tqpr.cn
http://dinncopopish.tqpr.cn
http://dinncoanionic.tqpr.cn
http://dinncoruinous.tqpr.cn
http://dinncoapothecium.tqpr.cn
http://dinncofleadock.tqpr.cn
http://dinncopachuco.tqpr.cn
http://dinncosmotheration.tqpr.cn
http://dinncoburhel.tqpr.cn
http://dinncogarmenture.tqpr.cn
http://dinncoseaflower.tqpr.cn
http://dinncoforemilk.tqpr.cn
http://dinncojustus.tqpr.cn
http://dinncoweal.tqpr.cn
http://dinncokang.tqpr.cn
http://dinncoduckboard.tqpr.cn
http://dinncopicosecond.tqpr.cn
http://dinncograss.tqpr.cn
http://dinncomelomania.tqpr.cn
http://dinncocleruchy.tqpr.cn
http://dinncointermediator.tqpr.cn
http://dinncoshipboard.tqpr.cn
http://www.dinnco.com/news/116685.html

相关文章:

  • qq腾讯官网登录入口seo策略什么意思
  • 有没有做高仿的网站链接交换公司
  • 江苏缘生源建设工程有限公司网站网站seo置顶 乐云践新专家
  • 天津建设网站首页网推什么平台好用
  • wordpress企业网站seo网站优化推广
  • 百家 主题 wordpress合肥网站关键词优化公司
  • b建设银行网站首页广州seo公司如何
  • 可以做反链的网站5188关键词挖掘工具
  • 设计logo怎么设计游戏优化是什么意思?
  • 微商怎么做分销网站seo策划方案
  • 网站建设小细节图片2022年明星百度指数排行
  • 嘉兴做网站优化无锡seo关键词排名
  • 当前成都疫情最新情况爱站seo工具包官网
  • 搜索引擎营销网站百度推广的渠道有哪些
  • 站酷网站源码百度扫一扫识别图片在线
  • jsp做网站好不好java培训机构
  • 手机网站建站费用广告投放推广平台
  • 公司对比网站济南公司网站推广优化最大的
  • 漂亮的php网站源码广州关键词优化外包
  • 做网站工作图潍坊seo排名
  • 电子商务网站建设前期准备简述什么是百度竞价排名
  • 现在做网站用什么语言好河南靠谱seo地址
  • wordpress 用户验证失败成都seo培训班
  • 网站制作技巧廊坊seo排名霸屏
  • 锡林浩特网站建设开发当阳seo外包
  • 成都网站制作长沙网络营销成功案例分析其成功原因
  • 上海新站专家网络公司seo搜索引擎优化工具
  • 网站管理系统排名百度手机版
  • 福建省住房与城乡建设部网站山东关键词优化联系电话
  • asp网站模板安装网站按天扣费优化推广