Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
73194cd9
Unverified
Commit
73194cd9
authored
Sep 18, 2020
by
xubaolin
Committed by
GitHub
Sep 18, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bug when updating the `divisions` and `value` of the slider at the same time (#65998)
parent
9618e10a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
91 additions
and
2 deletions
+91
-2
range_slider.dart
packages/flutter/lib/src/material/range_slider.dart
+3
-1
slider.dart
packages/flutter/lib/src/material/slider.dart
+3
-1
range_slider_test.dart
packages/flutter/test/material/range_slider_test.dart
+44
-0
slider_test.dart
packages/flutter/test/material/slider_test.dart
+41
-0
No files found.
packages/flutter/lib/src/material/range_slider.dart
View file @
73194cd9
...
...
@@ -731,8 +731,10 @@ class _RangeSliderRenderObjectWidget extends LeafRenderObjectWidget {
@override
void
updateRenderObject
(
BuildContext
context
,
_RenderRangeSlider
renderObject
)
{
renderObject
..
values
=
values
// We should update the `divisions` ahead of `values`, because the `values`
// setter dependent on the `divisions`.
..
divisions
=
divisions
..
values
=
values
..
labels
=
labels
..
sliderTheme
=
sliderTheme
..
theme
=
Theme
.
of
(
context
)
...
...
packages/flutter/lib/src/material/slider.dart
View file @
73194cd9
...
...
@@ -839,8 +839,10 @@ class _SliderRenderObjectWidget extends LeafRenderObjectWidget {
@override
void
updateRenderObject
(
BuildContext
context
,
_RenderSlider
renderObject
)
{
renderObject
..
value
=
value
// We should update the `divisions` ahead of `value`, because the `value`
// setter dependent on the `divisions`.
..
divisions
=
divisions
..
value
=
value
..
label
=
label
..
sliderTheme
=
sliderTheme
..
theme
=
Theme
.
of
(
context
)
...
...
packages/flutter/test/material/range_slider_test.dart
View file @
73194cd9
...
...
@@ -10,6 +10,7 @@ import 'package:flutter/cupertino.dart';
import
'package:flutter/foundation.dart'
;
import
'package:flutter/material.dart'
;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/src/physics/utils.dart'
show
nearEqual
;
import
'package:flutter_test/flutter_test.dart'
;
import
'../rendering/mock_canvas.dart'
;
...
...
@@ -1915,4 +1916,47 @@ void main() {
..
circle
(
x:
0.0
,
y:
5.0
,
radius:
10.0
,)
);
});
testWidgets
(
'Update the divisions and values at the same time for RangeSlider'
,
(
WidgetTester
tester
)
async
{
// Regress test for https://github.com/flutter/flutter/issues/65943
Widget
buildFrame
(
double
maxValue
)
{
return
MaterialApp
(
home:
Material
(
child:
Center
(
child:
RangeSlider
(
values:
const
RangeValues
(
5
,
8
),
max:
maxValue
,
divisions:
maxValue
.
toInt
(),
onChanged:
(
RangeValues
newValue
)
{},
),
),
),
);
}
await
tester
.
pumpWidget
(
buildFrame
(
10
));
// _RenderRangeSlider is the last render object in the tree.
final
RenderObject
renderObject
=
tester
.
allRenderObjects
.
last
;
// Update the divisions from 10 to 15, the thumbs should be paint at the correct position.
await
tester
.
pumpWidget
(
buildFrame
(
15
));
await
tester
.
pumpAndSettle
();
// Finish the animation.
Rect
activeTrackRect
;
expect
(
renderObject
,
paints
..
something
((
Symbol
method
,
List
<
dynamic
>
arguments
)
{
if
(
method
!=
#drawRect
)
return
false
;
activeTrackRect
=
arguments
[
0
]
as
Rect
;
return
true
;
}));
// The 1st thumb should at one-third(5 / 15) of the Slider.
// The 2nd thumb should at (8 / 15) of the Slider.
// The left of the active track shape is the position of the 1st thumb.
// The right of the active track shape is the position of the 2nd thumb.
// 24.0 is the default margin, (800.0 - 24.0 - 24.0) is the slider's width.
expect
(
nearEqual
(
activeTrackRect
.
left
,
(
800.0
-
24.0
-
24.0
)
*
(
5
/
15
)
+
24.0
,
0.01
),
true
);
expect
(
nearEqual
(
activeTrackRect
.
right
,
(
800.0
-
24.0
-
24.0
)
*
(
8
/
15
)
+
24.0
,
0.01
),
true
);
});
}
packages/flutter/test/material/slider_test.dart
View file @
73194cd9
...
...
@@ -12,6 +12,7 @@ import 'package:flutter/material.dart';
import
'package:flutter/rendering.dart'
;
import
'package:flutter/scheduler.dart'
;
import
'package:flutter/services.dart'
;
import
'package:flutter/src/physics/utils.dart'
show
nearEqual
;
import
'package:flutter_test/flutter_test.dart'
;
import
'../rendering/mock_canvas.dart'
;
...
...
@@ -2431,4 +2432,44 @@ void main() {
..
circle
(
x:
5.0
,
y:
5.0
,
radius:
10.0
,
)
);
});
testWidgets
(
'Update the divisions and value at the same time for Slider'
,
(
WidgetTester
tester
)
async
{
// Regress test for https://github.com/flutter/flutter/issues/65943
Widget
buildFrame
(
double
maxValue
)
{
return
MaterialApp
(
home:
Material
(
child:
Center
(
child:
Slider
.
adaptive
(
value:
5
,
max:
maxValue
,
divisions:
maxValue
.
toInt
(),
onChanged:
(
double
newValue
)
{},
),
),
),
);
}
await
tester
.
pumpWidget
(
buildFrame
(
10
));
// _RenderSlider is the last render object in the tree.
final
RenderObject
renderObject
=
tester
.
allRenderObjects
.
last
;
// Update the divisions from 10 to 15, the thumb should be paint at the correct position.
await
tester
.
pumpWidget
(
buildFrame
(
15
));
await
tester
.
pumpAndSettle
();
// Finish the animation.
RRect
activeTrackRRect
;
expect
(
renderObject
,
paints
..
something
((
Symbol
method
,
List
<
dynamic
>
arguments
)
{
if
(
method
!=
#drawRRect
)
return
false
;
activeTrackRRect
=
arguments
[
0
]
as
RRect
;
return
true
;
}));
// The thumb should at one-third(5 / 15) of the Slider.
// The right of the active track shape is the position of the thumb.
// 24.0 is the default margin, (800.0 - 24.0 - 24.0) is the slider's width.
expect
(
nearEqual
(
activeTrackRRect
.
right
,
(
800.0
-
24.0
-
24.0
)
*
(
5
/
15
)
+
24.0
,
0.01
),
true
);
});
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment