public static async Task TryPopModalAsync(this IModalNavigator source, bool?animated = null)
 {
     if (source == null)
     {
         return;
     }
     await source.PopModalAsync(animated);
 }