We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Both Navigated and Navigating events are not being fire on both Windows and Android
Use the sample code that working on Xamarin but not on Maui
<ScrollView> <StackLayout> <!--Loading label should not render by default.--> <Label x:Name="labelLoading" Text="Loading..." IsVisible="false" /> <WebView HeightRequest="1000" WidthRequest="1000" Source="https://dotnet.microsoft.com/apps/xamarin" Navigated="webviewNavigated" Navigating="webviewNavigating" /> </StackLayout> </ScrollView>
void webviewNavigating(object sender, WebNavigatingEventArgs e) { labelLoading.IsVisible = true; } void webviewNavigated(object sender, WebNavigatedEventArgs e) { labelLoading.IsVisible = false; }
Preview 10 (current)
Unknown/Other
Android, Windows
Android 11, Windows
no
No response
The text was updated successfully, but these errors were encountered:
Why this issue is closed? This event really doesn't fire.
Sorry, something went wrong.
No branches or pull requests
Description
Both Navigated and Navigating events are not being fire on both Windows and Android
Steps to Reproduce
Use the sample code that working on Xamarin but not on Maui
Version with bug
Preview 10 (current)
Last version that worked well
Unknown/Other
Affected platforms
Android, Windows
Affected platform versions
Android 11, Windows
Did you find any workaround?
no
Relevant log output
No response
The text was updated successfully, but these errors were encountered: