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
519a5783
Unverified
Commit
519a5783
authored
Aug 28, 2022
by
Akshdeep Singh
Committed by
GitHub
Aug 28, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add material slider secondary value (#109808)
parent
1b8fb4c0
Changes
6
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
354 additions
and
48 deletions
+354
-48
slider.1.dart
examples/api/lib/material/slider/slider.1.dart
+66
-0
slider.1_test.dart
examples/api/test/material/slider/slider.1_test.dart
+35
-0
slider.dart
packages/flutter/lib/src/material/slider.dart
+72
-3
slider_theme.dart
packages/flutter/lib/src/material/slider_theme.dart
+90
-2
slider_test.dart
packages/flutter/test/material/slider_test.dart
+43
-12
slider_theme_test.dart
packages/flutter/test/material/slider_theme_test.dart
+48
-31
No files found.
examples/api/lib/material/slider/slider.1.dart
0 → 100644
View file @
519a5783
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Flutter code sample for Slider
import
'package:flutter/material.dart'
;
void
main
(
)
=>
runApp
(
const
MyApp
());
class
MyApp
extends
StatelessWidget
{
const
MyApp
({
super
.
key
});
static
const
String
_title
=
'Flutter Code Sample'
;
@override
Widget
build
(
BuildContext
context
)
{
return
MaterialApp
(
title:
_title
,
home:
Scaffold
(
appBar:
AppBar
(
title:
const
Text
(
_title
)),
body:
const
MyStatefulWidget
(),
),
);
}
}
class
MyStatefulWidget
extends
StatefulWidget
{
const
MyStatefulWidget
({
super
.
key
});
@override
State
<
MyStatefulWidget
>
createState
()
=>
_MyStatefulWidgetState
();
}
class
_MyStatefulWidgetState
extends
State
<
MyStatefulWidget
>
{
double
_currentSliderPrimaryValue
=
0.2
;
double
_currentSliderSecondaryValue
=
0.5
;
@override
Widget
build
(
BuildContext
context
)
{
return
Column
(
mainAxisAlignment:
MainAxisAlignment
.
center
,
children:
<
Widget
>[
Slider
(
value:
_currentSliderPrimaryValue
,
secondaryTrackValue:
_currentSliderSecondaryValue
,
label:
_currentSliderPrimaryValue
.
round
().
toString
(),
onChanged:
(
double
value
)
{
setState
(()
{
_currentSliderPrimaryValue
=
value
;
});
},
),
Slider
(
value:
_currentSliderSecondaryValue
,
label:
_currentSliderSecondaryValue
.
round
().
toString
(),
onChanged:
(
double
value
)
{
setState
(()
{
_currentSliderSecondaryValue
=
value
;
});
},
),
],
);
}
}
examples/api/test/material/slider/slider.1_test.dart
0 → 100644
View file @
519a5783
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import
'package:flutter/material.dart'
;
import
'package:flutter_api_samples/material/slider/slider.1.dart'
as
example
;
import
'package:flutter_test/flutter_test.dart'
;
void
main
(
)
{
testWidgets
(
'Slider shows secondary track'
,
(
WidgetTester
tester
)
async
{
await
tester
.
pumpWidget
(
const
example
.
MyApp
(),
);
expect
(
find
.
byType
(
Slider
),
findsNWidgets
(
2
));
final
Finder
slider1Finder
=
find
.
byType
(
Slider
).
at
(
0
);
final
Finder
slider2Finder
=
find
.
byType
(
Slider
).
at
(
1
);
Slider
slider1
=
tester
.
widget
(
slider1Finder
);
Slider
slider2
=
tester
.
widget
(
slider2Finder
);
expect
(
slider1
.
secondaryTrackValue
,
slider2
.
value
);
const
double
targetValue
=
0.8
;
final
Rect
rect
=
tester
.
getRect
(
slider2Finder
);
final
Offset
target
=
Offset
(
rect
.
left
+
(
rect
.
right
-
rect
.
left
)
*
targetValue
,
rect
.
top
+
(
rect
.
bottom
-
rect
.
top
)
/
2
);
await
tester
.
tapAt
(
target
);
await
tester
.
pump
();
slider1
=
tester
.
widget
(
slider1Finder
);
slider2
=
tester
.
widget
(
slider2Finder
);
expect
(
slider1
.
secondaryTrackValue
,
closeTo
(
targetValue
,
0.05
));
expect
(
slider1
.
secondaryTrackValue
,
slider2
.
value
);
});
}
packages/flutter/lib/src/material/slider.dart
View file @
519a5783
This diff is collapsed.
Click to expand it.
packages/flutter/lib/src/material/slider_theme.dart
View file @
519a5783
This diff is collapsed.
Click to expand it.
packages/flutter/test/material/slider_test.dart
View file @
519a5783
This diff is collapsed.
Click to expand it.
packages/flutter/test/material/slider_theme_test.dart
View file @
519a5783
...
@@ -34,17 +34,19 @@ void main() {
...
@@ -34,17 +34,19 @@ void main() {
trackHeight:
7.0
,
trackHeight:
7.0
,
activeTrackColor:
Color
(
0xFF000001
),
activeTrackColor:
Color
(
0xFF000001
),
inactiveTrackColor:
Color
(
0xFF000002
),
inactiveTrackColor:
Color
(
0xFF000002
),
disabledActiveTrackColor:
Color
(
0xFF000003
),
secondaryActiveTrackColor:
Color
(
0xFF000003
),
disabledInactiveTrackColor:
Color
(
0xFF000004
),
disabledActiveTrackColor:
Color
(
0xFF000004
),
activeTickMarkColor:
Color
(
0xFF000005
),
disabledInactiveTrackColor:
Color
(
0xFF000005
),
inactiveTickMarkColor:
Color
(
0xFF000006
),
disabledSecondaryActiveTrackColor:
Color
(
0xFF000006
),
disabledActiveTickMarkColor:
Color
(
0xFF000007
),
activeTickMarkColor:
Color
(
0xFF000007
),
disabledInactiveTickMarkColor:
Color
(
0xFF000008
),
inactiveTickMarkColor:
Color
(
0xFF000008
),
thumbColor:
Color
(
0xFF000009
),
disabledActiveTickMarkColor:
Color
(
0xFF000009
),
overlappingShapeStrokeColor:
Color
(
0xFF000010
),
disabledInactiveTickMarkColor:
Color
(
0xFF000010
),
disabledThumbColor:
Color
(
0xFF000011
),
thumbColor:
Color
(
0xFF000011
),
overlayColor:
Color
(
0xFF000012
),
overlappingShapeStrokeColor:
Color
(
0xFF000012
),
valueIndicatorColor:
Color
(
0xFF000013
),
disabledThumbColor:
Color
(
0xFF000013
),
overlayColor:
Color
(
0xFF000014
),
valueIndicatorColor:
Color
(
0xFF000015
),
overlayShape:
RoundSliderOverlayShape
(),
overlayShape:
RoundSliderOverlayShape
(),
tickMarkShape:
RoundSliderTickMarkShape
(),
tickMarkShape:
RoundSliderTickMarkShape
(),
thumbShape:
RoundSliderThumbShape
(),
thumbShape:
RoundSliderThumbShape
(),
...
@@ -68,17 +70,19 @@ void main() {
...
@@ -68,17 +70,19 @@ void main() {
'trackHeight: 7.0'
,
'trackHeight: 7.0'
,
'activeTrackColor: Color(0xff000001)'
,
'activeTrackColor: Color(0xff000001)'
,
'inactiveTrackColor: Color(0xff000002)'
,
'inactiveTrackColor: Color(0xff000002)'
,
'disabledActiveTrackColor: Color(0xff000003)'
,
'secondaryActiveTrackColor: Color(0xff000003)'
,
'disabledInactiveTrackColor: Color(0xff000004)'
,
'disabledActiveTrackColor: Color(0xff000004)'
,
'activeTickMarkColor: Color(0xff000005)'
,
'disabledInactiveTrackColor: Color(0xff000005)'
,
'inactiveTickMarkColor: Color(0xff000006)'
,
'disabledSecondaryActiveTrackColor: Color(0xff000006)'
,
'disabledActiveTickMarkColor: Color(0xff000007)'
,
'activeTickMarkColor: Color(0xff000007)'
,
'disabledInactiveTickMarkColor: Color(0xff000008)'
,
'inactiveTickMarkColor: Color(0xff000008)'
,
'thumbColor: Color(0xff000009)'
,
'disabledActiveTickMarkColor: Color(0xff000009)'
,
'overlappingShapeStrokeColor: Color(0xff000010)'
,
'disabledInactiveTickMarkColor: Color(0xff000010)'
,
'disabledThumbColor: Color(0xff000011)'
,
'thumbColor: Color(0xff000011)'
,
'overlayColor: Color(0xff000012)'
,
'overlappingShapeStrokeColor: Color(0xff000012)'
,
'valueIndicatorColor: Color(0xff000013)'
,
'disabledThumbColor: Color(0xff000013)'
,
'overlayColor: Color(0xff000014)'
,
'valueIndicatorColor: Color(0xff000015)'
,
"overlayShape: Instance of 'RoundSliderOverlayShape'"
,
"overlayShape: Instance of 'RoundSliderOverlayShape'"
,
"tickMarkShape: Instance of 'RoundSliderTickMarkShape'"
,
"tickMarkShape: Instance of 'RoundSliderTickMarkShape'"
,
"thumbShape: Instance of 'RoundSliderThumbShape'"
,
"thumbShape: Instance of 'RoundSliderThumbShape'"
,
...
@@ -103,16 +107,18 @@ void main() {
...
@@ -103,16 +107,18 @@ void main() {
final
SliderThemeData
customTheme
=
sliderTheme
.
copyWith
(
final
SliderThemeData
customTheme
=
sliderTheme
.
copyWith
(
activeTrackColor:
Colors
.
purple
,
activeTrackColor:
Colors
.
purple
,
inactiveTrackColor:
Colors
.
purple
.
withAlpha
(
0x3d
),
inactiveTrackColor:
Colors
.
purple
.
withAlpha
(
0x3d
),
secondaryActiveTrackColor:
Colors
.
purple
.
withAlpha
(
0x8a
),
);
);
await
tester
.
pumpWidget
(
_buildApp
(
sliderTheme
,
value:
0.5
,
enabled:
false
));
await
tester
.
pumpWidget
(
_buildApp
(
sliderTheme
,
value:
0.5
,
secondaryTrackValue:
0.75
,
enabled:
false
));
final
MaterialInkController
material
=
Material
.
of
(
tester
.
element
(
find
.
byType
(
Slider
)))!;
final
MaterialInkController
material
=
Material
.
of
(
tester
.
element
(
find
.
byType
(
Slider
)))!;
expect
(
expect
(
material
,
material
,
paints
paints
..
rrect
(
color:
customTheme
.
disabledActiveTrackColor
)
..
rrect
(
color:
customTheme
.
disabledActiveTrackColor
)
..
rrect
(
color:
customTheme
.
disabledInactiveTrackColor
),
..
rrect
(
color:
customTheme
.
disabledInactiveTrackColor
)
..
rrect
(
color:
customTheme
.
disabledSecondaryActiveTrackColor
),
);
);
});
});
...
@@ -125,16 +131,18 @@ void main() {
...
@@ -125,16 +131,18 @@ void main() {
final
SliderThemeData
customTheme
=
sliderTheme
.
copyWith
(
final
SliderThemeData
customTheme
=
sliderTheme
.
copyWith
(
activeTrackColor:
Colors
.
purple
,
activeTrackColor:
Colors
.
purple
,
inactiveTrackColor:
Colors
.
purple
.
withAlpha
(
0x3d
),
inactiveTrackColor:
Colors
.
purple
.
withAlpha
(
0x3d
),
secondaryActiveTrackColor:
Colors
.
purple
.
withAlpha
(
0x8a
),
);
);
await
tester
.
pumpWidget
(
_buildApp
(
sliderTheme
,
value:
0.5
,
enabled:
false
));
await
tester
.
pumpWidget
(
_buildApp
(
sliderTheme
,
value:
0.5
,
secondaryTrackValue:
0.75
,
enabled:
false
));
final
MaterialInkController
material
=
Material
.
of
(
tester
.
element
(
find
.
byType
(
Slider
)))!;
final
MaterialInkController
material
=
Material
.
of
(
tester
.
element
(
find
.
byType
(
Slider
)))!;
expect
(
expect
(
material
,
material
,
paints
paints
..
rrect
(
color:
customTheme
.
disabledActiveTrackColor
)
..
rrect
(
color:
customTheme
.
disabledActiveTrackColor
)
..
rrect
(
color:
customTheme
.
disabledInactiveTrackColor
),
..
rrect
(
color:
customTheme
.
disabledInactiveTrackColor
)
..
rrect
(
color:
customTheme
.
disabledSecondaryActiveTrackColor
),
);
);
});
});
...
@@ -153,8 +161,10 @@ void main() {
...
@@ -153,8 +161,10 @@ void main() {
expect
(
sliderTheme
.
activeTrackColor
,
equals
(
customColor1
.
withAlpha
(
0xff
)));
expect
(
sliderTheme
.
activeTrackColor
,
equals
(
customColor1
.
withAlpha
(
0xff
)));
expect
(
sliderTheme
.
inactiveTrackColor
,
equals
(
customColor1
.
withAlpha
(
0x3d
)));
expect
(
sliderTheme
.
inactiveTrackColor
,
equals
(
customColor1
.
withAlpha
(
0x3d
)));
expect
(
sliderTheme
.
secondaryActiveTrackColor
,
equals
(
customColor1
.
withAlpha
(
0x8a
)));
expect
(
sliderTheme
.
disabledActiveTrackColor
,
equals
(
customColor2
.
withAlpha
(
0x52
)));
expect
(
sliderTheme
.
disabledActiveTrackColor
,
equals
(
customColor2
.
withAlpha
(
0x52
)));
expect
(
sliderTheme
.
disabledInactiveTrackColor
,
equals
(
customColor2
.
withAlpha
(
0x1f
)));
expect
(
sliderTheme
.
disabledInactiveTrackColor
,
equals
(
customColor2
.
withAlpha
(
0x1f
)));
expect
(
sliderTheme
.
disabledSecondaryActiveTrackColor
,
equals
(
customColor2
.
withAlpha
(
0x1f
)));
expect
(
sliderTheme
.
activeTickMarkColor
,
equals
(
customColor3
.
withAlpha
(
0x8a
)));
expect
(
sliderTheme
.
activeTickMarkColor
,
equals
(
customColor3
.
withAlpha
(
0x8a
)));
expect
(
sliderTheme
.
inactiveTickMarkColor
,
equals
(
customColor1
.
withAlpha
(
0x8a
)));
expect
(
sliderTheme
.
inactiveTickMarkColor
,
equals
(
customColor1
.
withAlpha
(
0x8a
)));
expect
(
sliderTheme
.
disabledActiveTickMarkColor
,
equals
(
customColor3
.
withAlpha
(
0x1f
)));
expect
(
sliderTheme
.
disabledActiveTickMarkColor
,
equals
(
customColor3
.
withAlpha
(
0x1f
)));
...
@@ -209,8 +219,10 @@ void main() {
...
@@ -209,8 +219,10 @@ void main() {
expect
(
lerp
.
trackHeight
,
equals
(
4.0
));
expect
(
lerp
.
trackHeight
,
equals
(
4.0
));
expect
(
lerp
.
activeTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0xff
)));
expect
(
lerp
.
activeTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0xff
)));
expect
(
lerp
.
inactiveTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0x3d
)));
expect
(
lerp
.
inactiveTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0x3d
)));
expect
(
lerp
.
secondaryActiveTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0x8a
)));
expect
(
lerp
.
disabledActiveTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0x52
)));
expect
(
lerp
.
disabledActiveTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0x52
)));
expect
(
lerp
.
disabledInactiveTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0x1f
)));
expect
(
lerp
.
disabledInactiveTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0x1f
)));
expect
(
lerp
.
disabledSecondaryActiveTrackColor
,
equals
(
middleGrey
.
withAlpha
(
0x1f
)));
expect
(
lerp
.
activeTickMarkColor
,
equals
(
middleGrey
.
withAlpha
(
0x8a
)));
expect
(
lerp
.
activeTickMarkColor
,
equals
(
middleGrey
.
withAlpha
(
0x8a
)));
expect
(
lerp
.
inactiveTickMarkColor
,
equals
(
middleGrey
.
withAlpha
(
0x8a
)));
expect
(
lerp
.
inactiveTickMarkColor
,
equals
(
middleGrey
.
withAlpha
(
0x8a
)));
expect
(
lerp
.
disabledActiveTickMarkColor
,
equals
(
middleGrey
.
withAlpha
(
0x1f
)));
expect
(
lerp
.
disabledActiveTickMarkColor
,
equals
(
middleGrey
.
withAlpha
(
0x1f
)));
...
@@ -229,7 +241,7 @@ void main() {
...
@@ -229,7 +241,7 @@ void main() {
);
);
final
SliderThemeData
sliderTheme
=
theme
.
sliderTheme
.
copyWith
(
thumbColor:
Colors
.
red
.
shade500
);
final
SliderThemeData
sliderTheme
=
theme
.
sliderTheme
.
copyWith
(
thumbColor:
Colors
.
red
.
shade500
);
await
tester
.
pumpWidget
(
_buildApp
(
sliderTheme
,
value:
0.25
));
await
tester
.
pumpWidget
(
_buildApp
(
sliderTheme
,
value:
0.25
,
secondaryTrackValue:
0.5
));
final
MaterialInkController
material
=
Material
.
of
(
tester
.
element
(
find
.
byType
(
Slider
)))!;
final
MaterialInkController
material
=
Material
.
of
(
tester
.
element
(
find
.
byType
(
Slider
)))!;
const
Radius
radius
=
Radius
.
circular
(
2
);
const
Radius
radius
=
Radius
.
circular
(
2
);
...
@@ -241,10 +253,11 @@ void main() {
...
@@ -241,10 +253,11 @@ void main() {
material
,
material
,
paints
paints
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
24.0
,
297.0
,
212.0
,
303.0
,
topLeft:
activatedRadius
,
bottomLeft:
activatedRadius
),
color:
sliderTheme
.
activeTrackColor
)
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
24.0
,
297.0
,
212.0
,
303.0
,
topLeft:
activatedRadius
,
bottomLeft:
activatedRadius
),
color:
sliderTheme
.
activeTrackColor
)
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
212.0
,
298.0
,
776.0
,
302.0
,
topRight:
radius
,
bottomRight:
radius
),
color:
sliderTheme
.
inactiveTrackColor
),
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
212.0
,
298.0
,
776.0
,
302.0
,
topRight:
radius
,
bottomRight:
radius
),
color:
sliderTheme
.
inactiveTrackColor
)
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
212.0
,
298.0
,
400.0
,
302.0
,
topRight:
radius
,
bottomRight:
radius
),
color:
sliderTheme
.
secondaryActiveTrackColor
),
);
);
await
tester
.
pumpWidget
(
_buildApp
(
sliderTheme
,
value:
0.25
,
enabled:
false
));
await
tester
.
pumpWidget
(
_buildApp
(
sliderTheme
,
value:
0.25
,
secondaryTrackValue:
0.5
,
enabled:
false
));
await
tester
.
pumpAndSettle
();
// wait for disable animation
await
tester
.
pumpAndSettle
();
// wait for disable animation
// The disabled slider thumb is the same size as the enabled thumb.
// The disabled slider thumb is the same size as the enabled thumb.
...
@@ -252,7 +265,8 @@ void main() {
...
@@ -252,7 +265,8 @@ void main() {
material
,
material
,
paints
paints
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
24.0
,
297.0
,
212.0
,
303.0
,
topLeft:
activatedRadius
,
bottomLeft:
activatedRadius
),
color:
sliderTheme
.
disabledActiveTrackColor
)
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
24.0
,
297.0
,
212.0
,
303.0
,
topLeft:
activatedRadius
,
bottomLeft:
activatedRadius
),
color:
sliderTheme
.
disabledActiveTrackColor
)
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
212.0
,
298.0
,
776.0
,
302.0
,
topRight:
radius
,
bottomRight:
radius
),
color:
sliderTheme
.
disabledInactiveTrackColor
),
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
212.0
,
298.0
,
776.0
,
302.0
,
topRight:
radius
,
bottomRight:
radius
),
color:
sliderTheme
.
disabledInactiveTrackColor
)
..
rrect
(
rrect:
RRect
.
fromLTRBAndCorners
(
212.0
,
298.0
,
400.0
,
302.0
,
topRight:
radius
,
bottomRight:
radius
),
color:
sliderTheme
.
disabledSecondaryActiveTrackColor
),
);
);
});
});
...
@@ -1348,17 +1362,19 @@ class RoundedRectSliderTrackShapeWithCustomAdditionalActiveTrackHeight extends R
...
@@ -1348,17 +1362,19 @@ class RoundedRectSliderTrackShapeWithCustomAdditionalActiveTrackHeight extends R
required
Animation
<
double
>
enableAnimation
,
required
Animation
<
double
>
enableAnimation
,
required
TextDirection
textDirection
,
required
TextDirection
textDirection
,
required
Offset
thumbCenter
,
required
Offset
thumbCenter
,
Offset
?
secondaryOffset
,
bool
isDiscrete
=
false
,
bool
isDiscrete
=
false
,
bool
isEnabled
=
false
,
bool
isEnabled
=
false
,
double
additionalActiveTrackHeight
=
2.0
,
double
additionalActiveTrackHeight
=
2.0
,
})
{
})
{
super
.
paint
(
context
,
offset
,
parentBox:
parentBox
,
sliderTheme:
sliderTheme
,
enableAnimation:
enableAnimation
,
textDirection:
textDirection
,
thumbCenter:
thumbCenter
,
additionalActiveTrackHeight:
this
.
additionalActiveTrackHeight
);
super
.
paint
(
context
,
offset
,
parentBox:
parentBox
,
sliderTheme:
sliderTheme
,
enableAnimation:
enableAnimation
,
textDirection:
textDirection
,
thumbCenter:
thumbCenter
,
secondaryOffset:
secondaryOffset
,
additionalActiveTrackHeight:
this
.
additionalActiveTrackHeight
);
}
}
}
}
Widget
_buildApp
(
Widget
_buildApp
(
SliderThemeData
sliderTheme
,
{
SliderThemeData
sliderTheme
,
{
double
value
=
0.0
,
double
value
=
0.0
,
double
?
secondaryTrackValue
,
bool
enabled
=
true
,
bool
enabled
=
true
,
int
?
divisions
,
int
?
divisions
,
})
{
})
{
...
@@ -1370,6 +1386,7 @@ Widget _buildApp(
...
@@ -1370,6 +1386,7 @@ Widget _buildApp(
data:
sliderTheme
,
data:
sliderTheme
,
child:
Slider
(
child:
Slider
(
value:
value
,
value:
value
,
secondaryTrackValue:
secondaryTrackValue
,
label:
'
$value
'
,
label:
'
$value
'
,
onChanged:
onChanged
,
onChanged:
onChanged
,
divisions:
divisions
,
divisions:
divisions
,
...
...
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