progressIndicatorWithValue method

  1. @override
Widget progressIndicatorWithValue(
  1. AppModel app,
  2. BuildContext context, {
  3. Animation<Color>? valueColor,
  4. required double value,
})
override

Implementation

@override
Widget progressIndicatorWithValue(AppModel app, BuildContext context,
    {Animation<Color>? valueColor, required double value}) {
  return Center(
      child: CircularProgressIndicator(value: value, valueColor: valueColor));
}