CircularProgressIndicator.adaptive constructor
Creates an adaptive progress indicator that is a CupertinoActivityIndicator in TargetPlatform.iOS & TargetPlatform.macOS and CircularProgressIndicator in material theme/non-Apple platforms.
The value
, valueColor
, strokeWidth
, semanticsLabel
, and
semanticsValue
will be ignored in iOS & macOS.
The value
argument can either be null for an indeterminate
progress indicator, or a non-null value between 0.0 and 1.0 for a
determinate progress indicator.
Accessibility
The semanticsLabel
can be used to identify the purpose of this progress
bar for screen reading software. The semanticsValue
property may be used
for determinate progress indicators to indicate how much progress has been made.
Implementation
const CircularProgressIndicator.adaptive({
super.key,
super.value,
super.backgroundColor,
super.valueColor,
this.strokeWidth = 4.0,
super.semanticsLabel,
super.semanticsValue,
this.strokeCap,
this.strokeAlign = strokeAlignCenter,
}) : _indicatorType = _ActivityIndicatorType.adaptive;