This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private async Task ShowActionSheet() | |
{ | |
var response = await Interactions.Actions.Handle(new ActionSheetArgs("Actions", new string[] { "Action1", "Action2" })); | |
// TODO: Like with the Error Dialog, we want to perform different actions based on the user selection | |
switch (response) | |
{ | |
case ("Action1"): | |
case ("Action2"): | |
default: | |
var alert = await Interactions.Alerts.Handle(new AlertArgs("I did it!", $"Selected {response}")); | |
break; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment