You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed memory leak where modal pages with ToolbarItems were retained after dismissal when using x:Name on any element in the page or Clicked event on the ToolbarItem. (#839)
Copy file name to clipboardExpand all lines: CHANGELOG.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,6 @@
1
+
## [55.6.7]
2
+
- Fixed memory leak where modal pages with `ToolbarItems` were retained after dismissal when using `x:Name` on any element in the page or `Clicked` event on the `ToolbarItem`.
3
+
1
4
## [55.6.6]
2
5
-[Toolbar] Supports IsVisible and other visual element properties.
Copy file name to clipboardExpand all lines: src/library/DIPS.Mobile.UI/Components/Shell/Shell.cs
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,7 @@ private static async Task TryResolvePoppedModalPages(List<ModalPageReference> mo
150
150
GarbageCollection.Print($"--- 🪟 Attempting to check for leaks in every page that has ever been opened in modal: {modalPage.Name}, number of pages: {modalPage.WeakPages.Count}");
0 commit comments