fluffychat/lib/pangea/analytics/widgets/progress_bar/progress_bar_details.dart
ggurdin 027158e286
1435 refactor into function specific groupings (#1440)
* fix: deleted unreferenced files

* fix: sort files based on function
2025-01-14 14:00:30 -05:00

25 lines
485 B
Dart

import 'dart:ui';
class LevelBarDetails {
final Color fillColor;
final int currentPoints;
final double widthMultiplier;
const LevelBarDetails({
required this.fillColor,
required this.currentPoints,
required this.widthMultiplier,
});
}
class ProgressBarDetails {
final double totalWidth;
final Color borderColor;
final double height;
const ProgressBarDetails({
required this.totalWidth,
required this.borderColor,
this.height = 14,
});
}