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
d1371cd2
Commit
d1371cd2
authored
Feb 15, 2019
by
Anthony
Committed by
Hans Muller
Feb 15, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not draw Slider tick marks if they are too dense (#27969)
parent
d1707ab0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
17 deletions
+21
-17
slider.dart
packages/flutter/lib/src/material/slider.dart
+21
-17
No files found.
packages/flutter/lib/src/material/slider.dart
View file @
d1371cd2
...
...
@@ -1005,23 +1005,27 @@ class _RenderSlider extends RenderBox {
isEnabled:
isInteractive
,
sliderTheme:
_sliderTheme
,
).
width
;
for
(
int
i
=
0
;
i
<=
divisions
;
i
++)
{
final
double
tickValue
=
i
/
divisions
;
// The ticks are mapped to be within the track, so the tick mark width
// must be subtracted from the track width.
final
double
tickX
=
trackRect
.
left
+
tickValue
*
(
trackRect
.
width
-
tickMarkWidth
)
+
tickMarkWidth
/
2
;
final
double
tickY
=
trackRect
.
center
.
dy
;
final
Offset
tickMarkOffset
=
Offset
(
tickX
,
tickY
);
_sliderTheme
.
tickMarkShape
.
paint
(
context
,
tickMarkOffset
,
parentBox:
this
,
sliderTheme:
_sliderTheme
,
enableAnimation:
_enableAnimation
,
textDirection:
_textDirection
,
thumbCenter:
thumbCenter
,
isEnabled:
isInteractive
,
);
// If the ticks would be too dense, don't bother painting them.
if
((
trackRect
.
width
-
tickMarkWidth
)
/
divisions
>=
3.0
*
tickMarkWidth
)
{
for
(
int
i
=
0
;
i
<=
divisions
;
i
++)
{
final
double
tickValue
=
i
/
divisions
;
// The ticks are mapped to be within the track, so the tick mark width
// must be subtracted from the track width.
final
double
tickX
=
trackRect
.
left
+
tickValue
*
(
trackRect
.
width
-
tickMarkWidth
)
+
tickMarkWidth
/
2
;
final
double
tickY
=
trackRect
.
center
.
dy
;
final
Offset
tickMarkOffset
=
Offset
(
tickX
,
tickY
);
_sliderTheme
.
tickMarkShape
.
paint
(
context
,
tickMarkOffset
,
parentBox:
this
,
sliderTheme:
_sliderTheme
,
enableAnimation:
_enableAnimation
,
textDirection:
_textDirection
,
thumbCenter:
thumbCenter
,
isEnabled:
isInteractive
,
);
}
}
}
...
...
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