flutter 开发中常用的弹窗插件oktoast,使用非常简单
插件地址:oktoast | Flutter Package (pub.dev)
使用方法
在APP入口需要套一个OKToast组件:
OKToast(
/// set toast style, optional
child:MaterialApp()
);
- 弹出弹窗
showToast("hello");
- 自定义弹窗
// 调用弹窗
showToastWidget(CustomToast());
// 自定义弹窗widget
class CustomToast extends StatelessWidget{
@override
Widget build(BuildContext context) {
return Container(
width: 200,
height: 200,
color: Colors.red,
child: Image.asset("images/toast.png"),
);
}
}
网友评论