Progress
Progress bars and indicators for tracking operations.
Installation
bash
flutter_studio add progressbash
flutter pub add flutter_studioUsage
dart
CustomProgress(
value: 0.65, // 65%
)
// With label
CustomProgress(
value: 0.75,
showLabel: true,
)
// Indeterminate
CustomProgress(
indeterminate: true,
)API Reference
Properties
| Property | Type | Default | Description |
|---|---|---|---|
value | double? | null | Progress value (0.0 - 1.0) |
showLabel | bool | false | Show percentage label |
