I have a Xamarin Forms 4.1 solution with Android, iOS and UWP projects that I am using Acr.UserDialogs. For the most part everything works as it should with the dialogs and toasts except for UWP. It works in UWP but the Toast messages display in the upper left hand corner which covers the menu button. I need the toast to display at the bottom of the screen in UWP just as it does for Android and iOS. Can someone help me with correcting this issue?
Here is my code as to how I display the toast:
var toastConfig = new ToastConfig(toastMsg);
toastConfig.SetDuration(TimeSpan.FromSeconds(6));
toastConfig.SetPosition(ToastPosition.Bottom);
UserDialogs.Instance.Toast(toastConfig);