我是靠谱客的博主 隐形汉堡,最近开发中收集的这篇文章主要介绍Dart flutter 常用函数 常用文档,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Dart生产随机数

print(Random().nextInt(4).toString());

Text超出显示省略号

结合可设置宽的widget使用

Text(
" `Text`超出显示省略号",
overflow: TextOverflow.ellipsis,
),

圆角

一般结合Container使用

 decoration: BoxDecoration(
borderRadius: BorderRadius.all(Radius.circular(13.0)),
),

屏幕宽度

MediaQuery.of(context).size.width

延迟执行,延时

 Future.delayed(Duration(seconds: 3)).then((e) {
setState(() {
for(var i = 0;i<2;i++){
_setData();
}
});
});

加载,Loading

Container(
padding: const EdgeInsets.all(16.0),
alignment: Alignment.center,
child: SizedBox(
width: 24.0,
height: 24.0,
child: CircularProgressIndicator(
strokeWidth: 2.0,
backgroundColor: LcfarmColor.colorFFE1251B,
valueColor: new AlwaysStoppedAnimation<Color>(LcfarmColor.colorWhite),
),
),
);

子Widget和父Widget通信

通知(Notification)是Flutter中一个重要的机制,在widget树中,每一个节点都可以分发通知,通知会沿着当前节点向上传递,所有父节点都可以通过NotificationListener来监听通知。Flutter中将这种由子向父的传递通知的机制称为通知冒泡(Notification Bubbling)。通知冒泡和用户触摸事件冒泡是相似的,但有一点不同:通知冒泡可以中止,但用户触摸事件不行。

文档地址

屏幕宽、高获取

MediaQuery.of(context).size.width;
MediaQuery.of(context).size.height;

最后

以上就是隐形汉堡为你收集整理的Dart flutter 常用函数 常用文档的全部内容,希望文章能够帮你解决Dart flutter 常用函数 常用文档所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(94)

评论列表共有 0 条评论

立即
投稿
返回
顶部