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
eae9bba7
Unverified
Commit
eae9bba7
authored
Sep 16, 2022
by
xubaolin
Committed by
GitHub
Sep 16, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix a draggableScrollableSheet's LocalHistoryEntry leaking (#110576)
parent
9be0fa74
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
77 additions
and
11 deletions
+77
-11
scaffold.dart
packages/flutter/lib/src/material/scaffold.dart
+22
-11
persistent_bottom_sheet_test.dart
...s/flutter/test/material/persistent_bottom_sheet_test.dart
+55
-0
No files found.
packages/flutter/lib/src/material/scaffold.dart
View file @
eae9bba7
...
...
@@ -2177,6 +2177,7 @@ class ScaffoldState extends State<Scaffold> with TickerProviderStateMixin, Resto
final
List
<
_StandardBottomSheet
>
_dismissedBottomSheets
=
<
_StandardBottomSheet
>[];
PersistentBottomSheetController
<
dynamic
>?
_currentBottomSheet
;
final
GlobalKey
_currentBottomSheetKey
=
GlobalKey
();
LocalHistoryEntry
?
_persistentSheetHistoryEntry
;
void
_maybeBuildPersistentBottomSheet
()
{
if
(
widget
.
bottomSheet
!=
null
&&
_currentBottomSheet
==
null
)
{
...
...
@@ -2184,22 +2185,19 @@ class ScaffoldState extends State<Scaffold> with TickerProviderStateMixin, Resto
// will not be added to the Scaffold's appbar and the bottom sheet will not
// support drag or swipe to dismiss.
final
AnimationController
animationController
=
BottomSheet
.
createAnimationController
(
this
)..
value
=
1.0
;
LocalHistoryEntry
?
persistentSheetHistoryEntry
;
bool
persistentBottomSheetExtentChanged
(
DraggableScrollableNotification
notification
)
{
if
(
notification
.
extent
>
notification
.
initialExtent
)
{
if
(
persistentSheetHistoryEntry
==
null
)
{
persistentSheetHistoryEntry
=
LocalHistoryEntry
(
onRemove:
()
{
if
(
notification
.
extent
>
notification
.
initialExtent
)
{
if
(
notification
.
extent
-
notification
.
initialExtent
>
precisionErrorTolerance
)
{
if
(
_persistentSheetHistoryEntry
==
null
)
{
_persistentSheetHistoryEntry
=
LocalHistoryEntry
(
onRemove:
()
{
DraggableScrollableActuator
.
reset
(
notification
.
context
);
}
showBodyScrim
(
false
,
0.0
);
_floatingActionButtonVisibilityValue
=
1.0
;
persistentSheetHistoryEntry
=
null
;
_
persistentSheetHistoryEntry
=
null
;
});
ModalRoute
.
of
(
context
)!.
addLocalHistoryEntry
(
persistentSheetHistoryEntry
!);
ModalRoute
.
of
(
context
)!.
addLocalHistoryEntry
(
_
persistentSheetHistoryEntry
!);
}
}
else
if
(
persistentSheetHistoryEntry
!=
null
)
{
ModalRoute
.
of
(
context
)!.
removeLocalHistoryEntry
(
persistentSheetHistoryEntry
!
);
}
else
if
(
_
persistentSheetHistoryEntry
!=
null
)
{
_persistentSheetHistoryEntry
!.
remove
(
);
}
return
false
;
}
...
...
@@ -2298,6 +2296,15 @@ class ScaffoldState extends State<Scaffold> with TickerProviderStateMixin, Resto
bool
removedEntry
=
false
;
bool
doingDispose
=
false
;
void
removePersistentSheetHistoryEntryIfNeeded
()
{
assert
(
isPersistent
);
if
(
_persistentSheetHistoryEntry
!=
null
)
{
_persistentSheetHistoryEntry
!.
remove
();
_persistentSheetHistoryEntry
=
null
;
}
}
void
removeCurrentBottomSheet
()
{
removedEntry
=
true
;
if
(
_currentBottomSheet
==
null
)
{
...
...
@@ -2307,6 +2314,10 @@ class ScaffoldState extends State<Scaffold> with TickerProviderStateMixin, Resto
assert
(
bottomSheetKey
.
currentState
!=
null
);
_showFloatingActionButton
();
if
(
isPersistent
)
{
removePersistentSheetHistoryEntryIfNeeded
();
}
bottomSheetKey
.
currentState
!.
close
();
setState
(()
{
_currentBottomSheet
=
null
;
...
...
packages/flutter/test/material/persistent_bottom_sheet_test.dart
View file @
eae9bba7
...
...
@@ -22,6 +22,61 @@ void main() {
expect
(
dyDelta1
,
isNot
(
moreOrLessEquals
(
dyDelta2
,
epsilon:
0.1
)));
}
testWidgets
(
'Persistent draggableScrollableSheet localHistoryEntries test'
,
(
WidgetTester
tester
)
async
{
// Regression test for https://github.com/flutter/flutter/issues/110123
Widget
buildFrame
(
Widget
?
bottomSheet
)
{
return
MaterialApp
(
home:
Scaffold
(
appBar:
AppBar
(),
body:
const
Center
(
child:
Text
(
'body'
)),
bottomSheet:
bottomSheet
,
floatingActionButton:
const
FloatingActionButton
(
onPressed:
null
,
child:
Text
(
'fab'
),
),
),
);
}
final
Widget
draggableScrollableSheet
=
DraggableScrollableSheet
(
expand:
false
,
snap:
true
,
initialChildSize:
0.3
,
minChildSize:
0.3
,
builder:
(
_
,
ScrollController
controller
)
{
return
ListView
.
builder
(
itemExtent:
50.0
,
itemCount:
50
,
itemBuilder:
(
_
,
int
index
)
=>
Text
(
'Item
$index
'
),
controller:
controller
,
);
},
);
await
tester
.
pumpWidget
(
buildFrame
(
draggableScrollableSheet
));
await
tester
.
pumpAndSettle
();
expect
(
find
.
byType
(
BackButton
).
hitTestable
(),
findsNothing
);
await
tester
.
drag
(
find
.
text
(
'Item 2'
),
const
Offset
(
0
,
-
200.0
));
await
tester
.
pumpAndSettle
();
// We've started to drag up, we should have a back button now for a11y
expect
(
find
.
byType
(
BackButton
).
hitTestable
(),
findsOneWidget
);
await
tester
.
fling
(
find
.
text
(
'Item 2'
),
const
Offset
(
0
,
200.0
),
2000.0
);
await
tester
.
pumpAndSettle
();
// BackButton should be hidden
expect
(
find
.
byType
(
BackButton
).
hitTestable
(),
findsNothing
);
// Show the back button again
await
tester
.
drag
(
find
.
text
(
'Item 2'
),
const
Offset
(
0
,
-
200.0
));
await
tester
.
pumpAndSettle
();
expect
(
find
.
byType
(
BackButton
).
hitTestable
(),
findsOneWidget
);
// Remove the draggableScrollableSheet should hide the back button
await
tester
.
pumpWidget
(
buildFrame
(
null
));
expect
(
find
.
byType
(
BackButton
).
hitTestable
(),
findsNothing
);
});
// Regression test for https://github.com/flutter/flutter/issues/83668
testWidgets
(
'Scaffold.bottomSheet update test'
,
(
WidgetTester
tester
)
async
{
Widget
buildFrame
(
Widget
?
bottomSheet
)
{
...
...
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