progress_hud10 1.1.2 progress_hud10: ^1.1.2 copied to clipboard
progress_hud is a clean and lightweight HUD meant to display the progress of an ongoing task on your Flutter app
progress_hud10 #
progress_hud10是个简单的加载动画。
使用步骤 #
1、添加依赖
dependencies: dio: ^1.1.2
2、示例
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
final key = GlobalKey<ProgressHudState>();
@override
void initState() {
super.initState();
Future.delayed(const Duration(seconds:30), (){
this.key.currentState.updateLoad(false);
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
backgroundColor: Colors.red,
title: const Text('星星编程'),
),
body: ProgressHud(key:this.key,loading: true ,color: Colors.red,width: 160,height: 160, child: Center(
child: Text("加载动画简单示例"),
),
),
)
);
}
}
3、效果图
4、参数说明
- loading loading=false结束动画。loading=true开始动画。
- child 加载内容显示子组件。
- height 加载动画框的高度。
- width 加载动画框的宽度。
- color 加载动画框的颜色。
- bgColor 遮罩层的背景色。
- count 加载动画圆点的个数。
- speed 加载动画旋转的速度。
- opacity 遮罩层的透明度。
5、关注微信公众号交流学习