Conor Breen

Results 24 comments of Conor Breen

@LaraSQP all that is missing is the using statements: ```csharp using Android.Views; using Android.Widget; using AndroidX.AppCompat.Widget; using View = Android.Views.View; ``` Hope this helps.

I'm also having this issue. Still persists in the latest 4.22.3 released 7 days ago. Any plans to address the issue? Any suggestions for workarounds for this?

Also, something weird in the documentation [here](https://learn.microsoft.com/en-us/dotnet/api/microsoft.bot.builder.dialogs.dialogcontext.enddialogasync?view=botbuilder-dotnet-stable): > The parent dialog is the dialog _the started the on being ended_ via a call to either [BeginDialogAsync(String, Object, CancellationToken)](https://learn.microsoft.com/en-us/dotnet/api/microsoft.bot.builder.dialogs.dialogcontext.begindialogasync?view=botbuilder-dotnet-stable#microsoft-bot-builder-dialogs-dialogcontext-begindialogasync(system-string-system-object-system-threading-cancellationtoken)) or [PromptAsync(String,...

OK, think I have figured out the cause of the problem, for me at least. My circumstance was a WaterfallDialog being shown inside a ComponentDialog, used to add other dialog...