Files
lunasea/lib/widgets/ui/linear_indicator.dart
2022-09-26 21:02:50 -04:00

37 lines
1.0 KiB
Dart

import 'package:flutter/material.dart';
import 'package:lunasea/core.dart';
import 'package:percent_indicator/linear_percent_indicator.dart';
class LunaLinearPercentIndicator extends StatelessWidget {
static const _LINE_HEIGHT = 4.0;
static const double height = _LINE_HEIGHT + LunaUI.DEFAULT_MARGIN_SIZE / 2;
final double? percent;
final Color progressColor;
final Color? backgroundColor;
const LunaLinearPercentIndicator({
Key? key,
this.percent,
this.progressColor = LunaColours.accent,
this.backgroundColor,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
height: height,
alignment: Alignment.bottomCenter,
child: LinearPercentIndicator(
percent: percent!,
padding: EdgeInsets.zero,
lineHeight: 4.0,
progressColor: progressColor,
barRadius: const Radius.circular(LunaUI.BORDER_RADIUS),
backgroundColor:
backgroundColor ?? progressColor.withOpacity(LunaUI.OPACITY_SPLASH),
),
);
}
}