Unverified Commit f129fb0a authored by creativecreatorormaybenot's avatar creativecreatorormaybenot Committed by GitHub

Improve ProgressIndicator value range docs (#88800)

parent 09072627
...@@ -32,8 +32,8 @@ abstract class ProgressIndicator extends StatefulWidget { ...@@ -32,8 +32,8 @@ abstract class ProgressIndicator extends StatefulWidget {
/// ///
/// {@template flutter.material.ProgressIndicator.ProgressIndicator} /// {@template flutter.material.ProgressIndicator.ProgressIndicator}
/// The [value] argument can either be null for an indeterminate /// The [value] argument can either be null for an indeterminate
/// progress indicator, or non-null for a determinate progress /// progress indicator, or a non-null value between 0.0 and 1.0 for a
/// indicator. /// determinate progress indicator.
/// ///
/// ## Accessibility /// ## Accessibility
/// ///
...@@ -54,6 +54,7 @@ abstract class ProgressIndicator extends StatefulWidget { ...@@ -54,6 +54,7 @@ abstract class ProgressIndicator extends StatefulWidget {
/// If non-null, the value of this progress indicator. /// If non-null, the value of this progress indicator.
/// ///
/// A value of 0.0 means no progress and 1.0 means that progress is complete. /// A value of 0.0 means no progress and 1.0 means that progress is complete.
/// The value will be clamped to be in the range 0.0-1.0.
/// ///
/// If null, this progress indicator is indeterminate, which means the /// If null, this progress indicator is indeterminate, which means the
/// indicator displays a predetermined animation that does not indicate how /// indicator displays a predetermined animation that does not indicate how
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment