v0.2.2
progress_indicator
फ्लटर के लिए उपयोगी कस्टम प्रगति इंडिकेटर का संग्रह।
36लाइक 33530-दिन डाउनलोड140Pub अंक
AndroidiOSWebmacOSWindowsLinux
Flutter के लिए एक प्रगति सूचक
{"sdk":"flutter"}{"sdk":"flutter"}यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
CircularProgress
import 'package:progress_indicator/progress_indicator.dart';
CircularProgress(
percentage: 90.0,
color: Colors.amber,
backColor: Colors.grey,
gradient: LinearGradient(colors: [Colors.blue, Colors.red]),
showPercentage: true,
textStyle:TextStyle(color: Colors.orange,fontSize: 70),
stroke: 20,
round: true,
),
BarProgress(
percentage: 30.0,
backColor: Colors.grey,
gradient: LinearGradient(colors: [Colors.blue, Colors.red]),
showPercentage: true,
textStyle:TextStyle(color: Colors.orange,fontSize: 70),
stroke: 40,
round: true,
),