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

            var result = await _inputAlertDialogService.OpenTextInputAlertDialog(
                "What's your name?", "enter here...", "Ok", "Ops! Can't leave this empty!");

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