mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Merge pull request #1240 from HansMuller/page_storage
PageStorage storage identifier should include the context widget's key
This commit is contained in:
commit
675f4c4d2a
@ -31,6 +31,10 @@ class _StorageEntryIdentifier {
|
||||
return true;
|
||||
}
|
||||
int get hashCode => hashValues(clientType, scopeKey, hashList(keys));
|
||||
|
||||
String toString() {
|
||||
return 'StorageEntryIdentifier($clientType, $scopeKey, ${keys?.join(":")})';
|
||||
}
|
||||
}
|
||||
|
||||
class PageStorageBucket {
|
||||
@ -39,6 +43,8 @@ class PageStorageBucket {
|
||||
result.clientType = context.widget.runtimeType;
|
||||
Key lastKey = context.widget.key;
|
||||
if (lastKey is! GlobalKey) {
|
||||
if (lastKey != null)
|
||||
result.addKey(lastKey);
|
||||
context.visitAncestorElements((Element element) {
|
||||
if (element.widget.key is GlobalKey) {
|
||||
lastKey = element.widget.key;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user