v0.2.2
progress_indicator
Eine nützliche Sammlung benutzerdefinierter Fortschrittsindikatoren für Flutter.
36Likes 33530-Tage-Downloads140Pub-Punkte
AndroidiOSWebmacOSWindowsLinux
Ein Fortschrittsindikator für Flutter
{"sdk":"flutter"}{"sdk":"flutter"}Englischer Projektschnappschuss. Aktuelle Inhalte auf 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,
),