Unverified Commit f68646ee authored by Sam Rawlins's avatar Sam Rawlins Committed by GitHub

Fix RangeSlider constructor reference to `[value]` (#111694)

parent ed11867a
...@@ -110,7 +110,7 @@ class RangeSlider extends StatefulWidget { ...@@ -110,7 +110,7 @@ class RangeSlider extends StatefulWidget {
/// The range slider widget itself does not maintain any state. Instead, when /// The range slider widget itself does not maintain any state. Instead, when
/// the state of the slider changes, the widget calls the [onChanged] callback. /// the state of the slider changes, the widget calls the [onChanged] callback.
/// Most widgets that use a range slider will listen for the [onChanged] callback /// Most widgets that use a range slider will listen for the [onChanged] callback
/// and rebuild the slider with a new [value] to update the visual appearance of /// and rebuild the slider with new [values] to update the visual appearance of
/// the slider. To know when the value starts to change, or when it is done /// the slider. To know when the value starts to change, or when it is done
/// changing, set the optional callbacks [onChangeStart] and/or [onChangeEnd]. /// changing, set the optional callbacks [onChangeStart] and/or [onChangeEnd].
/// ///
......
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