码迷,mamicode.com
首页 > 其他好文 > 详细

Flutter loading

时间:2020-04-28 23:02:00      阅读:82      评论:0      收藏:0      [点我收藏+]

标签:direction   review   height   return   举例   idg   方式   nim   github   

如何和原生APP系统自带的一样实现一个通用的loading?


有多种实现方式,这里举例两种:

第一:用Overlay

 1 Directionality(
 2     child: Overlay(
 3       initialEntries: [
 4         OverlayEntry(
 5           builder: (BuildContext _context) {
 6             return 自定义widget;
 7           },
 8         ),
 9       ],
10     ),
11     textDirection: TextDirection.ltr,
12 );

 

第二:用Dialog

WillPopScope(
	onWillPop: () async => _loadingDismissible,
	child: Center(
	  child: SizedBox(
	    width: 166,
	    height: 166,
	    child: Dialog(
	        backgroundColor: Colors.transparent,
	        insetAnimationDuration: Duration(milliseconds: 100),
	        child: 自定义widget),
	  ),
	),
);

  

效果图:

 

技术图片

 

完整代码,jd_loading

 

Flutter loading

标签:direction   review   height   return   举例   idg   方式   nim   github   

原文地址:https://www.cnblogs.com/spring87/p/12797585.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!