loadingIndicator method

Widget loadingIndicator(
  1. bool loading
)

Implementation

Widget loadingIndicator(bool loading) {
  return loading
      ? SizedBox(
          child: CircularProgressIndicator(
            valueColor: new AlwaysStoppedAnimation<Color>(Colors.white),
            strokeWidth: 3.0,
          ),
          height: 25.0,
          width: 25.0,
        ).withPadding(EdgeInsets.all(12.0))
      : this;
}