Flutter 字符串格式化
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flutter 字符串格式化相关的知识,希望对你有一定的参考价值。
Flutter不带字符串格式化
可以借助第三方
https://pub.dev/packages/sprintf
dependencies:
sprintf: ^6.0.0
String currentText="还剩%02d:%02d:%02d开播";
print(sprintf(currentText, [1,23,54]));
输出:还剩01:23:54开播
以上是关于Flutter 字符串格式化的主要内容,如果未能解决你的问题,请参考以下文章
Flutterflutter doctor 报错Android license status unknown. Run `flutter doctor --android-licenses‘(代码片段
如何从我的 DatePicker 片段中传输格式化的日期字符串?
flutter解决 dart:html 只支持 flutter_web 其他平台编译报错 Avoid using web-only libraries outside Flutter web(代码片段
Flutter 报错 DioError [DioErrorType.DEFAULT]: Bad state: Insecure HTTP is not allowed by platform(代码片段