another_gauge 1.0.0 another_gauge: ^1.0.0 copied to clipboard
Fully customizable Gauge widget for Flutter
another_gauge #
Fully customizable Gauge widget for Flutter
Installing: #
In your pubspec.yaml, add the following dependency
dependencies:
another_gauge: 1.0.0
Example Usage: #
import 'package:another_gauge/another_gauge.dart';
PrettyGauge(
gaugeSize: 200,
segments: [
GaugeSegment('Low', 20, Colors.red),
GaugeSegment('Medium', 40, Colors.orange),
GaugeSegment('High', 40, Colors.green),
],
currentValue: 46,
displayWidget: Text('Fuel in tank', style: TextStyle(fontSize: 12)),
),
Features: #
- Fully featured Gauge widget that is forked from pretty_gauge https://github.com/JErazo7/gauge
License: #
This project is licensed under the BSD 2-Clause license - see the LICENSE file for details