private async void OpenSelectableInputAlertDialog()
        {
            InputResult = "Waiting for result...";

            var result = await _inputAlertDialogService.OpenSelectableInputAlertDialog(
                "How's your day mate?",
                new List <string>() { "Awesome!", "Great!", "Cool!", "Good!", "Not Bad!", "Meh!" },
                "Save", "Cancel", "Ops! You can't leave without a selection!");

            InputResult = $"-{result}-";
        }