showPayLoading static method
Implementation
static void showPayLoading([Function? callBack]) {
EasyLoading.show(
indicator: SizedBox(
width: 40.w,
height: 70.w,
child: Column(
children: [
SpinKitFadingCircle(
size: 40.w,
color: Colors.white,
),
SizedBox(
height: 10.w,
),
Tapped(
onTap: () {
callBack?.call();
},
child: SizedBox(
width: 25.w,
height: 15.w,
child: Text(
'取消',
style: MyTextStyle.s12w400(color: Colors.white),
),
))
],
)));
}