buildStack method

Widget buildStack()

Implementation

Widget buildStack() {
  return Stack(
    children: [
      buildWebView(),
      if (_showLoadingWheel)
        Center(
          child: CircularProgressIndicator(
            color: Colors.blue,
          ),
        )
    ],
  );
}