I am using Loaded/Unloaded event of the XAML view.
Constructor()
{
InitializeComponent()
Loaded += LoadedEvent;
Unloaded += UnloadedEvent;
}
Is it required to unhook these events like Loaded -= LoadedEvent?? or it wont impact in the garbage collection of the View?