Exemple #1
0
 public static void ShowToastMessage(this Xamarin.Forms.View view, string strMessage, bool bLong = false)
 {
     if (bLong)
     {
         instance.LongAlert(strMessage);
     }
     else
     {
         instance.ShortAlert(strMessage);
     }
 }