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
750ad328
Unverified
Commit
750ad328
authored
May 05, 2022
by
Bruno Leroux
Committed by
GitHub
May 05, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix DraggableScrollableSheet leaks Ticker (#102916)
parent
077e7e18
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
74 additions
and
17 deletions
+74
-17
draggable_scrollable_sheet.dart
...s/flutter/lib/src/widgets/draggable_scrollable_sheet.dart
+21
-16
draggable_scrollable_sheet_test.dart
...flutter/test/widgets/draggable_scrollable_sheet_test.dart
+53
-1
No files found.
packages/flutter/lib/src/widgets/draggable_scrollable_sheet.dart
View file @
750ad328
...
...
@@ -795,8 +795,7 @@ class _DraggableScrollableSheetScrollController extends ScrollController {
/// See also:
///
/// * [_DraggableScrollableSheetScrollController], which uses this as its [ScrollPosition].
class
_DraggableScrollableSheetScrollPosition
extends
ScrollPositionWithSingleContext
{
class
_DraggableScrollableSheetScrollPosition
extends
ScrollPositionWithSingleContext
{
_DraggableScrollableSheetScrollPosition
({
required
super
.
physics
,
required
super
.
context
,
...
...
@@ -805,16 +804,18 @@ class _DraggableScrollableSheetScrollPosition
});
VoidCallback
?
_dragCancelCallback
;
VoidCallback
?
_ballisticCancelCallback
;
final
_DraggableSheetExtent
Function
()
getExtent
;
final
Set
<
AnimationController
>
_ballisticControllers
=
<
AnimationController
>{};
bool
get
listShouldScroll
=>
pixels
>
0.0
;
_DraggableSheetExtent
get
extent
=>
getExtent
();
@override
void
beginActivity
(
ScrollActivity
?
newActivity
)
{
// Cancel the running ballistic simulation, if there is one.
_ballisticCancelCallback
?.
call
();
// Cancel the running ballistic simulations
for
(
final
AnimationController
ballisticController
in
_ballisticControllers
)
{
ballisticController
.
stop
();
}
super
.
beginActivity
(
newActivity
);
}
...
...
@@ -852,8 +853,10 @@ class _DraggableScrollableSheetScrollPosition
@override
void
dispose
()
{
// Stop the animation before dispose.
_ballisticCancelCallback
?.
call
();
for
(
final
AnimationController
ballisticController
in
_ballisticControllers
)
{
ballisticController
.
dispose
();
}
_ballisticControllers
.
clear
();
super
.
dispose
();
}
...
...
@@ -873,10 +876,11 @@ class _DraggableScrollableSheetScrollPosition
if
(
extent
.
snap
)
{
// Snap is enabled, simulate snapping instead of clamping scroll.
simulation
=
_SnappingSimulation
(
position:
extent
.
currentPixels
,
initialVelocity:
velocity
,
pixelSnapSize:
extent
.
pixelSnapSizes
,
tolerance:
physics
.
tolerance
);
position:
extent
.
currentPixels
,
initialVelocity:
velocity
,
pixelSnapSize:
extent
.
pixelSnapSizes
,
tolerance:
physics
.
tolerance
,
);
}
else
{
// The iOS bouncing simulation just isn't right here - once we delegate
// the ballistic back to the ScrollView, it will use the right simulation.
...
...
@@ -892,9 +896,8 @@ class _DraggableScrollableSheetScrollPosition
debugLabel:
objectRuntimeType
(
this
,
'_DraggableScrollableSheetPosition'
),
vsync:
context
.
vsync
,
);
// Stop the ballistic animation if a new activity starts.
// See: [beginActivity].
_ballisticCancelCallback
=
ballisticController
.
stop
;
_ballisticControllers
.
add
(
ballisticController
);
double
lastPosition
=
extent
.
currentPixels
;
void
tick
()
{
final
double
delta
=
ballisticController
.
value
-
lastPosition
;
...
...
@@ -916,8 +919,10 @@ class _DraggableScrollableSheetScrollPosition
..
addListener
(
tick
)
..
animateWith
(
simulation
).
whenCompleteOrCancel
(
()
{
_ballisticCancelCallback
=
null
;
ballisticController
.
dispose
();
if
(
_ballisticControllers
.
contains
(
ballisticController
))
{
_ballisticControllers
.
remove
(
ballisticController
);
ballisticController
.
dispose
();
}
},
);
}
...
...
packages/flutter/test/widgets/draggable_scrollable_sheet_test.dart
View file @
750ad328
...
...
@@ -326,7 +326,59 @@ void main() {
expect
(
find
.
text
(
'Item 70'
),
findsNothing
);
},
variant:
TargetPlatformVariant
.
all
());
debugDefaultTargetPlatformOverride
=
null
;
testWidgets
(
'Ballistic animation on fling should not leak Ticker'
,
(
WidgetTester
tester
)
async
{
// Regression test for https://github.com/flutter/flutter/issues/101061
await
tester
.
pumpWidget
(
Directionality
(
textDirection:
TextDirection
.
ltr
,
child:
MediaQuery
(
data:
const
MediaQueryData
(),
child:
Align
(
alignment:
Alignment
.
bottomCenter
,
child:
DraggableScrollableSheet
(
initialChildSize:
0.8
,
minChildSize:
0.2
,
maxChildSize:
0.9
,
expand:
false
,
builder:
(
_
,
ScrollController
scrollController
)
{
return
ListView
.
separated
(
physics:
const
BouncingScrollPhysics
(),
controller:
scrollController
,
separatorBuilder:
(
_
,
__
)
=>
const
Divider
(),
itemCount:
100
,
itemBuilder:
(
_
,
int
index
)
=>
SizedBox
(
height:
100
,
child:
ColoredBox
(
color:
Colors
.
primaries
[
index
%
Colors
.
primaries
.
length
],
child:
Text
(
'Item
$index
'
),
),
),
);
},
),
),
),
),
);
await
tester
.
flingFrom
(
tester
.
getCenter
(
find
.
text
(
'Item 1'
)),
const
Offset
(
0
,
50
),
10000
,
);
// Pumps several times to let the DraggableScrollableSheet react to scroll position changes.
const
int
numberOfPumpsBeforeError
=
22
;
for
(
int
i
=
0
;
i
<
numberOfPumpsBeforeError
;
i
++)
{
await
tester
.
pump
(
const
Duration
(
milliseconds:
10
));
}
// Dispose the DraggableScrollableSheet
await
tester
.
pumpWidget
(
const
SizedBox
.
shrink
());
// When a Ticker leaks an exception is thrown
expect
(
tester
.
takeException
(),
isNull
);
});
});
testWidgets
(
'Does not snap away from initial child on build'
,
(
WidgetTester
tester
)
async
{
...
...
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