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
27cc8c06
Unverified
Commit
27cc8c06
authored
Apr 21, 2021
by
Ian Hickson
Committed by
GitHub
Apr 21, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move ExpansionPanelList to Canvas.drawShadow (#80134)
parent
362eefee
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
32 deletions
+32
-32
mergeable_material.dart
packages/flutter/lib/src/material/mergeable_material.dart
+29
-30
mergeable_material_test.dart
packages/flutter/test/material/mergeable_material_test.dart
+3
-2
No files found.
packages/flutter/lib/src/material/mergeable_material.dart
View file @
27cc8c06
...
...
@@ -7,9 +7,9 @@ import 'dart:ui' show lerpDouble;
import
'package:flutter/rendering.dart'
;
import
'package:flutter/widgets.dart'
;
import
'colors.dart'
;
import
'divider.dart'
;
import
'material.dart'
;
import
'shadows.dart'
;
import
'theme.dart'
;
/// The base type for [MaterialSlice] and [MaterialGap].
...
...
@@ -122,12 +122,8 @@ class MergeableMaterial extends StatefulWidget {
/// The z-coordinate at which to place all the [Material] slices.
///
/// The following elevations have defined shadows: 1, 2, 3, 4, 6, 8, 9, 12, 16, 24.
///
/// Defaults to 2, the appropriate elevation for cards.
///
/// This uses [kElevationToShadow] to simulate shadows, it does not use
/// [Material]'s arbitrary elevation feature.
// TODO(ianh): Change this to double.
final
int
elevation
;
/// Whether connected pieces of [MaterialSlice] have dividers between them.
...
...
@@ -620,7 +616,7 @@ class _MergeableMaterialState extends State<MergeableMaterial> with TickerProvid
return
_MergeableMaterialListBody
(
mainAxis:
widget
.
mainAxis
,
boxShadows:
kElevationToShadow
[
widget
.
elevation
]!
,
elevation:
widget
.
elevation
.
toDouble
()
,
items:
_children
,
children:
widgets
,
);
...
...
@@ -654,11 +650,11 @@ class _MergeableMaterialListBody extends ListBody {
required
List
<
Widget
>
children
,
Axis
mainAxis
=
Axis
.
vertical
,
required
this
.
items
,
required
this
.
boxShadows
,
required
this
.
elevation
,
})
:
super
(
children:
children
,
mainAxis:
mainAxis
);
final
List
<
MergeableMaterialItem
>
items
;
final
List
<
BoxShadow
>
boxShadows
;
final
double
elevation
;
AxisDirection
_getDirection
(
BuildContext
context
)
{
return
getAxisDirectionFromAxisReverseAndDirectionality
(
context
,
mainAxis
,
false
);
...
...
@@ -668,7 +664,7 @@ class _MergeableMaterialListBody extends ListBody {
RenderListBody
createRenderObject
(
BuildContext
context
)
{
return
_RenderMergeableMaterialListBody
(
axisDirection:
_getDirection
(
context
),
boxShadows:
boxShadows
,
elevation:
elevation
,
);
}
...
...
@@ -677,7 +673,7 @@ class _MergeableMaterialListBody extends ListBody {
final
_RenderMergeableMaterialListBody
materialRenderListBody
=
renderObject
as
_RenderMergeableMaterialListBody
;
materialRenderListBody
..
axisDirection
=
_getDirection
(
context
)
..
boxShadows
=
boxShadows
;
..
elevation
=
elevation
;
}
}
...
...
@@ -685,38 +681,41 @@ class _RenderMergeableMaterialListBody extends RenderListBody {
_RenderMergeableMaterialListBody
({
List
<
RenderBox
>?
children
,
AxisDirection
axisDirection
=
AxisDirection
.
down
,
required
this
.
boxShadows
,
})
:
super
(
children:
children
,
axisDirection:
axisDirection
);
double
elevation
=
0.0
,
})
:
_elevation
=
elevation
,
super
(
children:
children
,
axisDirection:
axisDirection
);
List
<
BoxShadow
>
boxShadows
;
double
get
elevation
=>
_elevation
;
double
_elevation
;
set
elevation
(
double
value
)
{
if
(
value
==
_elevation
)
return
;
_elevation
=
value
;
markNeedsPaint
();
}
void
_paintShadows
(
Canvas
canvas
,
Rect
rect
)
{
for
(
final
BoxShadow
boxShadow
in
boxShadows
)
{
final
Paint
paint
=
boxShadow
.
toPaint
();
// TODO(dragostis): Right now, we are only interpolating the border radii
// of the visible Material slices, not the shadows; they are not getting
// interpolated and always have the same rounded radii. Once shadow
// performance is better, shadows should be redrawn every single time the
// slices' radii get interpolated and use those radii not the defaults.
canvas
.
drawRRect
(
kMaterialEdges
[
MaterialType
.
card
]!.
toRRect
(
rect
),
paint
);
}
// TODO(ianh): We should interpolate the border radii of the shadows the same way we do those of the visible Material slices.
canvas
.
drawShadow
(
Path
()..
addRRect
(
kMaterialEdges
[
MaterialType
.
card
]!.
toRRect
(
rect
)),
Colors
.
black
,
elevation
,
true
,
// occluding object is not (necessarily) opaque
);
}
@override
void
paint
(
PaintingContext
context
,
Offset
offset
)
{
RenderBox
?
child
=
firstChild
;
int
i
=
0
;
int
index
=
0
;
while
(
child
!=
null
)
{
final
ListBodyParentData
childParentData
=
child
.
parentData
!
as
ListBodyParentData
;
final
Rect
rect
=
(
childParentData
.
offset
+
offset
)
&
child
.
size
;
if
(
i
.
isEven
)
if
(
i
ndex
.
isEven
)
_paintShadows
(
context
.
canvas
,
rect
);
child
=
childParentData
.
nextSibling
;
i
+=
1
;
index
+=
1
;
}
defaultPaint
(
context
,
offset
);
}
}
packages/flutter/test/material/mergeable_material_test.dart
View file @
27cc8c06
...
...
@@ -221,13 +221,14 @@ void main() {
),
);
final
BoxShadow
boxShadow
=
kElevationToShadow
[
2
]![
0
];
final
RRect
rrect
=
kMaterialEdges
[
MaterialType
.
card
]!.
toRRect
(
const
Rect
.
fromLTRB
(
0.0
,
0.0
,
800.0
,
100.0
)
);
expect
(
find
.
byType
(
MergeableMaterial
),
paints
..
rrect
(
rrect:
rrect
,
color:
boxShadow
.
color
,
hasMaskFilter:
true
),
paints
..
shadow
(
elevation:
2.0
)
..
rrect
(
rrect:
rrect
,
color:
Colors
.
white
,
hasMaskFilter:
false
),
);
debugDisableShadows
=
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