Skip to content

Flutter apps using this plugin can no longer run in the master channel #22

@volgin

Description

@volgin

This plugin has a deprecated code that prevents building Flutter apps:

Failed to build iOS app
Error (Xcode): ../../.pub-cache/hosted/pub.dev/liquid_progress_indicator-0.4.0/lib/src/liquid_circular_progress_indicator.dart:48:46: Error: The getter 'accentColor' isn't defined for the class 'ThemeData'.

The solution is to migrate from accentColor to secondary color, as explained in the documentation:

Code before migration:

Color myColor = Theme.of(context).accentColor;

Code after migration:

Color myColor = Theme.of(context).colorScheme.secondary;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions