centerPage static method

Widget centerPage(
  1. BuildContext context
)

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;
}