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
ff9d9fc2
Unverified
Commit
ff9d9fc2
authored
Dec 02, 2020
by
Ayush Bherwani
Committed by
GitHub
Dec 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[MaterialSlice] adds property to customize slice color (#63466)
parent
25986102
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
112 additions
and
43 deletions
+112
-43
mergeable_material.dart
packages/flutter/lib/src/material/mergeable_material.dart
+23
-24
mergeable_material_test.dart
packages/flutter/test/material/mergeable_material_test.dart
+89
-19
No files found.
packages/flutter/lib/src/material/mergeable_material.dart
View file @
ff9d9fc2
...
...
@@ -41,6 +41,7 @@ class MaterialSlice extends MergeableMaterialItem {
const
MaterialSlice
({
required
LocalKey
key
,
required
this
.
child
,
this
.
color
,
})
:
assert
(
key
!=
null
),
super
(
key
);
...
...
@@ -49,9 +50,14 @@ class MaterialSlice extends MergeableMaterialItem {
/// {@macro flutter.widgets.ProxyWidget.child}
final
Widget
child
;
/// Defines the color for the slice.
///
/// By default, the value of `color` is [ThemeData.cardColor].
final
Color
?
color
;
@override
String
toString
()
{
return
'MergeableSlice(key:
$key
, child:
$child
)'
;
return
'MergeableSlice(key:
$key
, child:
$child
, color:
$color
)'
;
}
}
...
...
@@ -534,17 +540,10 @@ class _MergeableMaterialState extends State<MergeableMaterial> with TickerProvid
if
(
_children
[
i
]
is
MaterialGap
)
{
assert
(
slices
.
isNotEmpty
);
widgets
.
add
(
Container
(
decoration:
BoxDecoration
(
color:
Theme
.
of
(
context
).
cardColor
,
borderRadius:
_borderRadius
(
i
-
1
,
widgets
.
isEmpty
,
false
),
shape:
BoxShape
.
rectangle
,
),
child:
ListBody
(
ListBody
(
mainAxis:
widget
.
mainAxis
,
children:
slices
,
),
),
);
slices
=
<
Widget
>[];
...
...
@@ -594,27 +593,27 @@ class _MergeableMaterialState extends State<MergeableMaterial> with TickerProvid
}
slices
.
add
(
Material
(
Container
(
decoration:
BoxDecoration
(
color:
(
_children
[
i
]
as
MaterialSlice
).
color
??
Theme
.
of
(
context
).
cardColor
,
borderRadius:
_borderRadius
(
i
,
i
==
0
,
i
==
_children
.
length
-
1
),
shape:
BoxShape
.
rectangle
,
),
child:
Material
(
type:
MaterialType
.
transparency
,
child:
child
,
),
),
);
}
}
if
(
slices
.
isNotEmpty
)
{
widgets
.
add
(
Container
(
decoration:
BoxDecoration
(
color:
Theme
.
of
(
context
).
cardColor
,
borderRadius:
_borderRadius
(
i
-
1
,
widgets
.
isEmpty
,
true
),
shape:
BoxShape
.
rectangle
,
),
child:
ListBody
(
ListBody
(
mainAxis:
widget
.
mainAxis
,
children:
slices
,
),
),
);
slices
=
<
Widget
>[];
}
...
...
packages/flutter/test/material/mergeable_material_test.dart
View file @
ff9d9fc2
...
...
@@ -159,7 +159,8 @@ void main() {
RenderBox
box
=
tester
.
renderObject
(
find
.
byType
(
MergeableMaterial
));
expect
(
box
.
size
.
height
,
equals
(
200.0
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
await
tester
.
pumpWidget
(
const
MaterialApp
(
...
...
@@ -194,7 +195,8 @@ void main() {
await
tester
.
pump
(
const
Duration
(
milliseconds:
100
));
expect
(
box
.
size
.
height
,
equals
(
200.0
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
});
testWidgets
(
'MergeableMaterial paints shadows'
,
(
WidgetTester
tester
)
async
{
...
...
@@ -338,7 +340,8 @@ void main() {
final
RenderBox
box
=
tester
.
renderObject
(
find
.
byType
(
MergeableMaterial
));
expect
(
box
.
size
.
height
,
equals
(
200
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
await
tester
.
pumpWidget
(
const
MaterialApp
(
...
...
@@ -414,7 +417,9 @@ void main() {
final
RenderBox
box
=
tester
.
renderObject
(
find
.
byType
(
MergeableMaterial
));
expect
(
box
.
size
.
height
,
equals
(
200
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
await
tester
.
pumpWidget
(
const
MaterialApp
(
...
...
@@ -571,7 +576,8 @@ void main() {
final
RenderBox
box
=
tester
.
renderObject
(
find
.
byType
(
MergeableMaterial
));
expect
(
box
.
size
.
height
,
equals
(
200
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
await
tester
.
pumpWidget
(
const
MaterialApp
(
...
...
@@ -609,7 +615,9 @@ void main() {
expect
(
box
.
size
.
height
,
equals
(
300
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
2
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
});
testWidgets
(
'MergeableMaterial remove slice'
,
(
WidgetTester
tester
)
async
{
...
...
@@ -650,7 +658,9 @@ void main() {
final
RenderBox
box
=
tester
.
renderObject
(
find
.
byType
(
MergeableMaterial
));
expect
(
box
.
size
.
height
,
equals
(
300
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
2
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
await
tester
.
pumpWidget
(
const
MaterialApp
(
...
...
@@ -682,7 +692,8 @@ void main() {
await
tester
.
pump
();
expect
(
box
.
size
.
height
,
equals
(
200
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
});
testWidgets
(
'MergeableMaterial insert chunk'
,
(
WidgetTester
tester
)
async
{
...
...
@@ -716,7 +727,8 @@ void main() {
final
RenderBox
box
=
tester
.
renderObject
(
find
.
byType
(
MergeableMaterial
));
expect
(
box
.
size
.
height
,
equals
(
200
));
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Round
);
matches
(
getBorderRadius
(
tester
,
0
),
RadiusType
.
Round
,
RadiusType
.
Sharp
);
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Sharp
,
RadiusType
.
Round
);
await
tester
.
pumpWidget
(
const
MaterialApp
(
...
...
@@ -1044,11 +1056,10 @@ void main() {
matches
(
getBorderRadius
(
tester
,
1
),
RadiusType
.
Round
,
RadiusType
.
Round
);
});
bool
isDivider
(
Widget
widget
,
bool
top
,
bool
bottom
)
{
final
DecoratedBox
box
=
widget
as
DecoratedBox
;
bool
isDivider
(
BoxDecoration
decoration
,
bool
top
,
bool
bottom
)
{
const
BorderSide
side
=
BorderSide
(
color:
Color
(
0x1F000000
),
width:
0.5
);
return
box
.
decoration
==
BoxDecoration
(
return
decoration
==
BoxDecoration
(
border:
Border
(
top:
top
?
side
:
BorderSide
.
none
,
bottom:
bottom
?
side
:
BorderSide
.
none
,
...
...
@@ -1099,8 +1110,15 @@ void main() {
),
);
List
<
Widget
>
boxes
=
tester
.
widgetList
(
find
.
byType
(
DecoratedBox
)).
toList
();
int
offset
=
1
;
List
<
Widget
>
animatedContainers
=
tester
.
widgetList
(
find
.
byType
(
AnimatedContainer
),
).
toList
();
List
<
BoxDecoration
>
boxes
=
<
BoxDecoration
>[];
for
(
final
Widget
container
in
animatedContainers
)
{
boxes
.
add
((
container
as
AnimatedContainer
).
decoration
!
as
BoxDecoration
);
}
int
offset
=
0
;
expect
(
isDivider
(
boxes
[
offset
],
false
,
true
),
isTrue
);
expect
(
isDivider
(
boxes
[
offset
+
1
],
true
,
true
),
isTrue
);
...
...
@@ -1155,14 +1173,21 @@ void main() {
// Wait for dividers to shrink.
await
tester
.
pump
(
const
Duration
(
milliseconds:
200
));
boxes
=
tester
.
widgetList
(
find
.
byType
(
DecoratedBox
)).
toList
();
offset
=
1
;
animatedContainers
=
tester
.
widgetList
(
find
.
byType
(
AnimatedContainer
),
).
toList
();
boxes
=
<
BoxDecoration
>[];
for
(
final
Widget
container
in
animatedContainers
)
{
boxes
.
add
((
container
as
AnimatedContainer
).
decoration
!
as
BoxDecoration
);
}
offset
=
0
;
expect
(
isDivider
(
boxes
[
offset
],
false
,
true
),
isTrue
);
expect
(
isDivider
(
boxes
[
offset
+
1
],
true
,
false
),
isTrue
);
// offset + 2 is gap
expect
(
isDivider
(
boxes
[
offset
+
3
],
false
,
true
),
isTrue
);
expect
(
isDivider
(
boxes
[
offset
+
4
],
true
,
false
),
isTrue
);
expect
(
isDivider
(
boxes
[
offset
+
2
],
false
,
true
),
isTrue
);
expect
(
isDivider
(
boxes
[
offset
+
3
],
true
,
false
),
isTrue
);
});
testWidgets
(
'MergeableMaterial respects dividerColor'
,
(
WidgetTester
tester
)
async
{
...
...
@@ -1201,4 +1226,49 @@ void main() {
// Since we are getting the last DecoratedBox, it will have a Border.top.
expect
(
decoration
.
border
!.
top
.
color
,
dividerColor
);
});
testWidgets
(
'MergeableMaterial respects MaterialSlice.color'
,
(
WidgetTester
tester
)
async
{
const
Color
themeCardColor
=
Colors
.
red
;
const
Color
materialSliceColor
=
Colors
.
green
;
await
tester
.
pumpWidget
(
MaterialApp
(
theme:
ThemeData
(
cardColor:
themeCardColor
,
),
home:
const
Scaffold
(
body:
SingleChildScrollView
(
child:
MergeableMaterial
(
children:
<
MergeableMaterialItem
>[
MaterialSlice
(
key:
ValueKey
<
String
>(
'A'
),
color:
materialSliceColor
,
child:
SizedBox
(
height:
100
,
width:
100
,
),
),
MaterialGap
(
key:
ValueKey
<
String
>(
'B'
),
),
MaterialSlice
(
key:
ValueKey
<
String
>(
'C'
),
child:
SizedBox
(
height:
100
,
width:
100
,
),
),
],
),
),
),
),
);
BoxDecoration
boxDecoration
=
tester
.
widget
<
Container
>(
find
.
byType
(
Container
).
first
).
decoration
!
as
BoxDecoration
;
expect
(
boxDecoration
.
color
,
materialSliceColor
);
boxDecoration
=
tester
.
widget
<
Container
>(
find
.
byType
(
Container
).
last
).
decoration
!
as
BoxDecoration
;
expect
(
boxDecoration
.
color
,
themeCardColor
);
});
}
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