Skip to content

Progress

Progress bars and indicators for tracking operations.

Installation

bash
bricolage_ui add progress
bash
flutter pub add bricolage_ui

Usage

dart
CustomProgress(
  value: 0.65, // 65%
)

// With label
CustomProgress(
  value: 0.75,
  showLabel: true,
)

// Indeterminate
CustomProgress(
  indeterminate: true,
)

API Reference

Properties

PropertyTypeDefaultDescription
valuedouble?nullProgress value (0.0 - 1.0)
showLabelboolfalseShow percentage label