public static async Task TrShowModalAsync <TViewModel>(this IModalNavigator source, Action <TViewModel> viewModelConfig = null, bool?animated = null) where TViewModel : class
 {
     if (source == null)
     {
         return;
     }
     await source.ShowModalAsync(viewModelConfig, animated);
 }