centerPage static method
Implementation
static Widget centerPage(BuildContext context ) {
var stack = Stack(children: [
EmptyView.empty( DeviceTools.getWidth(context), DeviceTools.getHalfHeight(context) ),
Positioned(child: ProgressSpinkit.get( ), left: 0, right: 0, top: DeviceTools.getHalfHeight(context)-50 )
],);
return stack;
}