zl程序教程

您现在的位置是:首页 >  移动开发

当前栏目

Flutter AlertDialog 、SimpleDialog、 showModalBottomSheet、showToast、自定义 Dialog

flutter 自定义 Dialog AlertDialog
2023-09-14 09:15:02 时间

一、 AlertDialog

在这里插入图片描述

二、 SimpleDialog

在这里插入图片描述

三、 showModalBottomSheet

在这里插入图片描述

四、 showToast

https://pub.dev/packages/fluttertoast
在这里插入图片描述

五、 Flutter 自定义 Dialog

自定义 Dialog 对象,需要继承 Dialog 类,尽管 Dialog 提供了 child 参数可以用来写视图界面,
但是往往会达不到我们想要的效果,因为默认的 Dialog 背景框是满屏的。如果我们想完全定
义界面,就需要重写 build 函数。下面我们通过两个案例给大家演示一下 Dialog 的使用。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

在这里插入图片描述

六、 Flutter 定时器

在这里插入图片描述

七、 Flutter 定时器结合 Dialog

在这里插入图片描述

在这里插入图片描述