/// <summary> /// Raises the item shown event. /// </summary> public void OnItemShown(Navigation widget, NavigationItemEventArgs e) { using (widget.Platform.Context) widget.OnItemShown(e); }
/// <summary> /// Raises the item shown event. /// </summary> public void OnItemShown(Navigation widget, EventArgs e) { widget.Platform.Invoke(() => widget.OnItemShown(e)); }