Skip to content

ProgressCircle color does not follow MacosTheme #553

@adiletcool

Description

@adiletcool

Description

ProgressCircle is not visible when using light theme

Steps To Reproduce

  1. Specify MacosApp(themeMode: ThemeMode.light)
  2. 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

No one assigned

    Labels

    bugSomething isn't working

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions