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
a1249ad2
Commit
a1249ad2
authored
Aug 11, 2015
by
Andrew Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Maximum bounds for the mimic in the overlay can now be specified.
parent
c9c4852a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
13 deletions
+18
-13
mimic_overlay.dart
packages/flutter/lib/widgets/mimic_overlay.dart
+18
-13
No files found.
packages/flutter/lib/widgets/mimic_overlay.dart
View file @
a1249ad2
...
...
@@ -15,13 +15,15 @@ class MimicOverlay extends AnimatedComponent {
this
.
children
,
this
.
overlay
,
this
.
duration
:
const
Duration
(
milliseconds:
200
),
this
.
curve
:
linear
this
.
curve
:
linear
,
this
.
targetRect
})
:
super
(
key:
key
);
List
<
Widget
>
children
;
GlobalKey
overlay
;
Duration
duration
;
Curve
curve
;
Rect
targetRect
;
void
syncFields
(
MimicOverlay
source
)
{
children
=
source
.
children
;
...
...
@@ -29,20 +31,28 @@ class MimicOverlay extends AnimatedComponent {
duration
=
source
.
duration
;
_expandPerformance
.
duration
=
duration
;
targetRect
=
source
.
targetRect
;
_mimicBounds
.
end
=
targetRect
;
if
(
_expandPerformance
.
isCompleted
)
{
_mimicBounds
.
value
=
_mimicBounds
.
end
;
}
curve
=
source
.
curve
;
_mimicBounds
.
curve
=
curve
;
if
(
overlay
!=
source
.
overlay
)
{
overlay
=
source
.
overlay
;
if
(
_expandPerformance
.
isDismissed
)
if
(
_expandPerformance
.
isDismissed
)
{
_activeOverlay
=
overlay
;
else
}
else
{
_expandPerformance
.
reverse
();
}
}
}
void
initState
()
{
_mimicBounds
=
new
AnimatedRect
(
new
Rect
(),
curve:
curve
);
_mimicBounds
.
end
=
targetRect
;
_expandPerformance
=
new
AnimationPerformance
()
..
duration
=
duration
..
addVariable
(
_mimicBounds
)
...
...
@@ -62,14 +72,11 @@ class MimicOverlay extends AnimatedComponent {
}
}
void
_handleStackSizeChanged
(
Size
size
)
{
_mimicBounds
.
end
=
Point
.
origin
&
size
;
}
void
_handleMimicCallback
(
Rect
globalBounds
)
{
setState
(()
{
// TODO(abarth): We need to convert global bounds into local coordinates.
_mimicBounds
.
begin
=
globalToLocal
(
globalBounds
.
topLeft
)
&
globalBounds
.
size
;
_mimicBounds
.
begin
=
globalToLocal
(
globalBounds
.
topLeft
)
&
globalBounds
.
size
;
_mimicBounds
.
value
=
_mimicBounds
.
begin
;
});
_expandPerformance
.
forward
();
...
...
@@ -78,8 +85,9 @@ class MimicOverlay extends AnimatedComponent {
Widget
build
()
{
List
<
Widget
>
layers
=
new
List
<
Widget
>();
if
(
children
!=
null
)
if
(
children
!=
null
)
{
layers
.
addAll
(
children
);
}
if
(
_activeOverlay
!=
null
)
{
layers
.
add
(
...
...
@@ -98,9 +106,6 @@ class MimicOverlay extends AnimatedComponent {
);
}
return
new
SizeObserver
(
callback:
_handleStackSizeChanged
,
child:
new
Stack
(
layers
)
);
return
new
Stack
(
layers
);
}
}
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