Example #1
0
        public void Show(string title, string message, DialogActionContainer actionContainer)
        {
            var toast = CreateToastPromt(title, message);

            toast.Tap       += actionContainer.OnTapAction;
            toast.DoubleTap += actionContainer.OnDoubleTapAction;
            toast.Hold      += actionContainer.OnHoldAction;

            toast.Show();
        }
Example #2
0
 public void Show(string title, string message, DialogActionContainer actionContainer)
 {
     throw new NotImplementedException();
 }