-
-
Notifications
You must be signed in to change notification settings - Fork 200
Open
Labels
bugSomething isn't workingSomething isn't working
Description
Description
ProgressCircle is not visible when using light theme
Steps To Reproduce
- Specify MacosApp(themeMode: ThemeMode.light)
- Create simple ProgressCircle() without value.
Expected behavior
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
),
);
}
}
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working