本文介绍了Flutter的日期时间格式dd / MM / YYYY hh:mm的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
通过使用以下命令:
Text(new DateTime.fromMillisecondsSinceEpoch(values[index]["start_time"]*1000).toString(),
我正在获取图片中附带的格式类型,但是我想知道是否可以使用 dd / MM / YYYY hh :mm
??
I am getting the type of format attached in the picture, however I was wondering if I could get it in dd/MM/YYYY hh:mm
??
推荐答案
如果使用
final f = new DateFormat('yyyy-MM-dd hh:mm');
Text(f.format(new DateTime.fromMillisecondsSinceEpoch(values[index]["start_time"]*1000)));
这篇关于Flutter的日期时间格式dd / MM / YYYY hh:mm的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!