v0.2.2
progress_indicator
Flutter用の便利なカスタムプログレスインジケータのコレクション。
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,
),