CircularProgress
Circular progress indicator for percentage-based progress.
File: example/lib/widgets/circular_progress.dart
Factory Methods
FBCircularProgress.basic()- Simple circleFBCircularProgress.labeled()- With center labelFBCircularProgress.indeterminate()- Indefinite loadingFBCircularProgress.stroke()- Thin stroke style
Properties
value: double (0.0 to 1.0)
strokeWidth: double
backgroundColor: Color
valueColor: Color
label: String
size: double
Usage Example
FBCircularProgress.labeled(
value: 0.75,
label: '75%',
strokeWidth: 4,
)
Indeterminate Loading
FBCircularProgress.indeterminate(
size: 48,
strokeWidth: 4,
)