button method

Widget button()

Makes this progress indicator usable as ElevatedButton.child.

Implementation

Widget button() {
  return Center(
    child: SizedBox.square(
      dimension: 18,
      child: CircularProgressIndicator(
        color: Modular.get<ThemeRepository>().state.colorScheme.onPrimary,
        strokeCap: StrokeCap.round,
        key: key,
        strokeWidth: 2.5,
      ),
    ),
  );
}