* feat(morphs): repo for getting lang-specific list of morphs * integrated repo into use of morph features and tags * generated * merged with previous push * generated * generated * chore: fix .env file path --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: ggurdin <46800240+ggurdin@users.noreply.github.com> Co-authored-by: ggurdin <ggurdin@gmail.com>
25 lines
485 B
Dart
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,
|
|
});
|
|
}
|