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
6a8c393f
Unverified
Commit
6a8c393f
authored
Nov 09, 2018
by
jslavitz
Committed by
GitHub
Nov 09, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allows for the CupertinoPicker to have a non white background color (#24085)
* fixes wheel gradient and adds test
parent
26a6fd92
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
140 additions
and
18 deletions
+140
-18
picker.dart
packages/flutter/lib/src/cupertino/picker.dart
+62
-18
picker_test.dart
packages/flutter/test/cupertino/picker_test.dart
+78
-0
No files found.
packages/flutter/lib/src/cupertino/picker.dart
View file @
6a8c393f
...
...
@@ -39,7 +39,8 @@ class CupertinoPicker extends StatefulWidget {
///
/// The [backgroundColor] defaults to light gray. It can be set to null to
/// disable the background painting entirely; this is mildly more efficient
/// than using [Colors.transparent].
/// than using [Colors.transparent]. Also, if it has transparency, no gradient
/// effect will be rendered.
///
/// The [looping] argument decides whether the child list loops and can be
/// scrolled infinitely. If set to true, scrolling past the end of the list
...
...
@@ -121,6 +122,9 @@ class CupertinoPicker extends StatefulWidget {
///
/// This can be set to null to disable the background painting entirely; this
/// is mildly more efficient than using [Colors.transparent].
///
/// Any alpha value less 255 (fully opaque) will cause the removal of the
/// wheel list edge fade gradient from rendering of the widget.
final
Color
backgroundColor
;
/// {@macro flutter.rendering.wheelList.offAxisFraction}
...
...
@@ -202,24 +206,32 @@ class _CupertinoPickerState extends State<CupertinoPicker> {
}
}
/// Makes the fade to
white
edge gradients.
/// Makes the fade to
[CupertinoPicker.backgroundColor]
edge gradients.
Widget
_buildGradientScreen
()
{
// Because BlendMode.dstOut doesn't work correctly with BoxDecoration we
// have to just do a color blend. And a due to the way we are layering
// the magnifier and the gradient on the background, using a transparent
// background color makes the picker look odd.
if
(
widget
.
backgroundColor
!=
null
&&
widget
.
backgroundColor
.
alpha
<
255
)
return
Container
();
final
Color
widgetBackgroundColor
=
widget
.
backgroundColor
;
return
Positioned
.
fill
(
child:
IgnorePointer
(
child:
Container
(
decoration:
const
BoxDecoration
(
decoration:
BoxDecoration
(
gradient:
LinearGradient
(
colors:
<
Color
>[
Color
(
0xFFFFFFFF
)
,
Color
(
0xF2FFFFFF
),
Color
(
0xDDFFFFFF
),
Color
(
0x00FFFFFF
),
Color
(
0x00FFFFFF
),
Color
(
0xDDFFFFFF
),
Color
(
0xF2FFFFFF
),
Color
(
0xFFFFFFFF
)
,
widgetBackgroundColor
,
widgetBackgroundColor
.
withAlpha
(
0xF2
),
widgetBackgroundColor
.
withAlpha
(
0xDD
),
widgetBackgroundColor
.
withAlpha
(
0
),
widgetBackgroundColor
.
withAlpha
(
0
),
widgetBackgroundColor
.
withAlpha
(
0xDD
),
widgetBackgroundColor
.
withAlpha
(
0xF2
),
widgetBackgroundColor
,
],
stops:
<
double
>[
stops:
const
<
double
>[
0.0
,
0.05
,
0.09
,
0.22
,
0.78
,
0.91
,
0.95
,
1.0
,
],
begin:
Alignment
.
topCenter
,
...
...
@@ -267,6 +279,34 @@ class _CupertinoPickerState extends State<CupertinoPicker> {
);
}
Widget
_buildUnderMagnifierScreen
()
{
final
Color
foreground
=
widget
.
backgroundColor
?.
withAlpha
(
(
widget
.
backgroundColor
.
alpha
*
_kForegroundScreenOpacityFraction
).
toInt
()
);
return
Column
(
children:
<
Widget
>[
Expanded
(
child:
Container
()),
Container
(
color:
foreground
,
constraints:
BoxConstraints
.
expand
(
height:
widget
.
itemExtent
*
widget
.
magnification
,
),
),
Expanded
(
child:
Container
()),
],
);
}
Widget
_addBackgroundToChild
(
Widget
child
)
{
return
DecoratedBox
(
decoration:
BoxDecoration
(
color:
widget
.
backgroundColor
,
),
child:
child
,
);
}
@override
Widget
build
(
BuildContext
context
)
{
Widget
result
=
Stack
(
...
...
@@ -292,13 +332,17 @@ class _CupertinoPickerState extends State<CupertinoPicker> {
_buildMagnifierScreen
(),
],
);
if
(
widget
.
backgroundColor
!=
null
)
{
result
=
DecoratedBox
(
decoration:
BoxDecoration
(
color:
widget
.
backgroundColor
,
),
child:
result
,
// Adds the appropriate opacity under the magnifier if the background
// color is transparent.
if
(
widget
.
backgroundColor
!=
null
&&
widget
.
backgroundColor
.
alpha
<
255
)
{
result
=
Stack
(
children:
<
Widget
>
[
_buildUnderMagnifierScreen
(),
_addBackgroundToChild
(
result
),
]
);
}
else
{
result
=
_addBackgroundToChild
(
result
);
}
return
result
;
}
...
...
packages/flutter/test/cupertino/picker_test.dart
View file @
6a8c393f
...
...
@@ -56,6 +56,84 @@ void main() {
});
});
group
(
'gradient'
,
()
{
testWidgets
(
'gradient displays correctly with background color'
,
(
WidgetTester
tester
)
async
{
const
Color
backgroundColor
=
Color
.
fromRGBO
(
255
,
0
,
0
,
1.0
);
await
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
child:
Align
(
alignment:
Alignment
.
topLeft
,
child:
SizedBox
(
height:
300.0
,
width:
300.0
,
child:
CupertinoPicker
(
backgroundColor:
backgroundColor
,
itemExtent:
15.0
,
children:
const
<
Widget
>[
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
],
onSelectedItemChanged:
(
int
i
)
{},
),
),
),
),
);
final
Container
container
=
tester
.
firstWidget
(
find
.
byType
(
Container
));
final
BoxDecoration
boxDecoration
=
container
.
decoration
;
expect
(
boxDecoration
.
gradient
.
colors
,
<
Color
>[
backgroundColor
,
backgroundColor
.
withAlpha
(
0xF2
),
backgroundColor
.
withAlpha
(
0xDD
),
backgroundColor
.
withAlpha
(
0x00
),
backgroundColor
.
withAlpha
(
0x00
),
backgroundColor
.
withAlpha
(
0xDD
),
backgroundColor
.
withAlpha
(
0xF2
),
backgroundColor
,
]);
});
testWidgets
(
'No gradient displays with transparent background color'
,
(
WidgetTester
tester
)
async
{
const
Color
backgroundColor
=
Color
.
fromRGBO
(
255
,
0
,
0
,
0.5
);
await
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
child:
Align
(
alignment:
Alignment
.
topLeft
,
child:
SizedBox
(
height:
300.0
,
width:
300.0
,
child:
CupertinoPicker
(
backgroundColor:
backgroundColor
,
itemExtent:
15.0
,
children:
const
<
Widget
>[
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
Text
(
'1'
),
],
onSelectedItemChanged:
(
int
i
)
{},
),
),
),
),
);
final
DecoratedBox
decoratedBox
=
tester
.
firstWidget
(
find
.
byType
(
DecoratedBox
));
final
BoxDecoration
boxDecoration
=
decoratedBox
.
decoration
;
expect
(
boxDecoration
.
gradient
,
isNull
);
expect
(
boxDecoration
.
color
,
isNotNull
);
});
});
group
(
'scroll'
,
()
{
testWidgets
(
'scrolling calls onSelectedItemChanged and triggers haptic feedback'
,
...
...
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