App crashing on iOS simulator #21715
Unanswered
SandeepReddyPinniti
asked this question in
Q&A
Replies: 1 comment 3 replies
-
@SandeepReddyPinniti The fix will be released in the next servicing release. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi Team,
I have a basic login page, I'm running the app on iOS simualtor and developing the code in VS2022 on windows machine. The App crashes as soon as I focus the mouse on the Email text box. I have registered Unhandled Exception event, but the event is not firing. Will you please guide me in resolving this issue.
C#
Copy
AppDomain.CurrentDomain.UnhandledException += HandleUnhandledException;
private void HandleUnhandledException(object sender, UnhandledExceptionEventArgs e)
{
// Log or handle the exception here
Exception ex = (Exception)e.ExceptionObject;
HandleError(ex, "App.HandleUnhandledException");
}
XAML
Copy
![]()
<ContentPage.BindingContext>
<viewModels:LoginViewModel />
</ContentPage.BindingContext>
<Grid.RowDefinitions>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
</Grid.ColumnDefinitions>
Thanks
Beta Was this translation helpful? Give feedback.
All reactions