moon_gauge_bar 1.0.1
moon_gauge_bar: ^1.0.1 copied to clipboard
moon_gauge_bar_package
Features #
A simple and easy-to-use gauge bar package!
1. half circular gauge bar #

Getting started #
flutter pub add moon_gauge_bar
Usage #
1. half circular gauge bar #
SizedBox(
width: 200,
height: 200,
// use moon gauge bar
child: MoonGaugeBar.halfCircularGaugeBar(
score: score,
labelStyle: const MoonGaugeLabelStyleUIModel(
startPointText: "0",
endPointText: "100",
),
),
)
Additional information #
properties objects #
- gaugeStyle : MoonGaugeBarStyleUIModel() Define the style for the gauge bar.
- labelStyle : MoonGaugeLabelStyleUIModel() Define the style for the gauge bar labels.
- scoreStyle : MoonGaugeScoreStyleUIModel() Define the style for the score in the center of the gauge bar.