buildLoading method
Standard loading circle for use across the application.
Implementation
Widget buildLoading() {
return Center(
child: SizedBox(
height: Spacing.of(context).spaces.big,
width: Spacing.of(context).spaces.big,
child: CircularProgressIndicator(
valueColor: AlwaysStoppedAnimation<Color>(theme.colorScheme.primary),
),
),
);
}