FProgress constructor
const
FProgress({
- FLinearProgressStyle? style,
- String? semanticsLabel,
- double? value,
- Duration duration,
- 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;