Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
kubaflo authored and rmarinho committed Dec 16, 2024
1 parent a85f4f4 commit 8b9d718
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Core/src/Platform/iOS/MauiView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -207,5 +207,13 @@ private void OnLayoutChanged()
{
LayoutChanged?.Invoke(this, EventArgs.Empty);
}

[UnconditionalSuppressMessage("Memory", "MEM0001", Justification = IUIViewLifeCycleEvents.UnconditionalSuppressMessage)]
internal event EventHandler? LayoutChanged;

private void OnLayoutChanged()
{
LayoutChanged?.Invoke(this, EventArgs.Empty);
}
}
}

0 comments on commit 8b9d718

Please sign in to comment.