showCenterTipsAlter method
dynamic
showCenterTipsAlter({})
中间弹出提示框
Implementation
showCenterTipsAlter(
{required Function callback,
title,
info,
cancelText,
sureText,
width,
height,
bool sureBtn = true,
bool cancelBtn = true,
heightAuto,
elevation,
minHeight,
maxHeight,
child}) {
return showDialog(
barrierColor: barrierColor,
context: context,
builder: (BuildContext context) {
return TipsAlterHeightAutoWidget(
callback,
cancelText,
sureText,
width,
height,
sureBtn,
cancelBtn,
child: child,
info: info,
title: title,
minHeight: minHeight,
elevation: elevation,
maxHeight: maxHeight,
);
},
);
}