buildViewLoading method

Widget buildViewLoading()

Implementation

Widget buildViewLoading() {
  return Container(
    color: Colors.black38,
    child: Center(
      child: Platform.isAndroid
          ? CircularProgressIndicator(
              valueColor: AlwaysStoppedAnimation<Color>(Colors.white),
              backgroundColor: Colors.black38,
            )
          : CupertinoActivityIndicator(radius: 10, animating: true),
    ),
  );
}