v1.0.1
customgauge
फ्लटर के लिए पूरी तरह से कस्टमाइज़ेबल गेज विजेट जिसमें कई सेगमेंट, रंग और वर्तमान मान और पाठ को दिखाने के लिए कस्टमाइज़ेबल स्टाइलिंग के विकल्प हैं
17लाइक 1630-दिन डाउनलोड40Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
Flutter के लिए पूरी तरह से कस्टमाइज़ करने योग्य गेज़ विजेट
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
Fully customizable Gauge widget for Flutter
https://github.com/jagan999/customgauge/raw/master/GaugeExample.jpgIn your pubspec.yaml, add the following dependency
dependencies:
customgauge: 1.0.0
import 'package:customgauge/customgauge.dart';
CustomGauge(
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)),
),
This project is licensed under the BSD 2-Clause license - see the LICENSE file for details