Work on Workspace loading

This commit is contained in:
2019-04-23 11:05:28 -05:00
parent 2bbf837b9e
commit 924a8e7af0
10 changed files with 79 additions and 29 deletions
+10 -1
View File
@@ -1,4 +1,5 @@
using Xamarin.Forms;
using Acr.UserDialogs;
using Xamarin.Forms;
namespace qController
{
@@ -63,5 +64,13 @@ namespace qController
{
// Handle when your app resumes
}
public static void showToast(string message)
{
var toastConfig = new ToastConfig(message);
toastConfig.SetDuration(3000);
toastConfig.SetPosition(ToastPosition.Bottom);
UserDialogs.Instance.Toast(toastConfig);
}
}
}