CircularProgress

Circular progress indicator for percentage-based progress.

File: example/lib/widgets/circular_progress.dart

Factory Methods

  • FBCircularProgress.basic() - Simple circle
  • FBCircularProgress.labeled() - With center label
  • FBCircularProgress.indeterminate() - Indefinite loading
  • FBCircularProgress.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,
)