class ProgressCircle extends StatelessWidget {
...
@override
Widget build(BuildContext context) {
if (isDeterminate) {
...
} else {
return Semantics(
label: semanticLabel,
child: c.CupertinoActivityIndicator(
radius: radius,
color: MacosTheme.of(context).primaryColor, // should use primary color or color specified in parameters
),
);
}
}
Description
ProgressCircle is not visible when using light theme
Steps To Reproduce
Expected behavior