FProgress constructor

const FProgress({
  1. FLinearProgressStyle? style,
  2. String? semanticsLabel,
  3. double? value,
  4. Duration duration,
  5. Key? key,
})

Creates a linear FProgress.

The duration is the duration of the animation. Defaults to 3s if value is null and 0.5s otherwise.

CLI

To generate and customize this widget's style:

dart run forui style create progresses

Implementation

const factory FProgress({
  FLinearProgressStyle? style,
  String? semanticsLabel,
  double? value,
  Duration duration,
  Key? key,
}) = _Linear;