defaultLoadingIndicator constant

Widget const defaultLoadingIndicator

Returns default loading indicator widget

Implementation

static const Widget defaultLoadingIndicator = const SizedBox(
  child: CircularProgressIndicator(
    strokeWidth: 1.5,
  ),
  height: 16.0,
  width: 16.0,
);