Skip to content

Commit

Permalink
add more deprecation notices
Browse files Browse the repository at this point in the history
  • Loading branch information
thelukewalton committed Jul 18, 2024
1 parent 82b043b commit 2a30eed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/assets/icons.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4855,7 +4855,7 @@ abstract class ZetaIcons {
static const IconData zoom_out_sharp = IconData(0xe219, fontFamily: familySharp, fontPackage: package);
}

// List of all icons.
/// List of all icons.
const Map<String, IconData> icons = {
'activity': ZetaIcons.activity,
'add_alert': ZetaIcons.add_alert,
Expand Down
6 changes: 5 additions & 1 deletion lib/src/components/progress/progress_circle.dart
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,11 @@ class _ZetaProgressCircleState extends ZetaProgressState<ZetaProgressCircle> {
}
}

///Class definition for [_CirclePainter]
/// Class definition for [CirclePainter]
@Deprecated('Deprecated in 0.14.1')
typedef CirclePainter = _CirclePainter;

/// Class definition for [_CirclePainter]
class _CirclePainter extends CustomPainter {
///Constructor for [_CirclePainter]
_CirclePainter({this.progress = 0, this.rounded = true, required this.colors});
Expand Down

0 comments on commit 2a30eed

Please sign in to comment.