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,
),