A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
SIGABRT Microsoft_Maui_Platform_PageViewController
Anonymous
Hi,
I have the below code in MAUI but I am getting this error when
https://sentry.io/share/issue/99ac3148fb634c559a5fee99e37429c3/
Here is my code:
async void cameraBarcodeReaderView_BarcodesDetected(System.Object sender, ZXing.Net.Maui.BarcodeDetectionEventArgs e)
{
try
{
Dispatcher.Dispatch(() =>
{
taqyeem_url = OneId.Current.Decrypt(e.Results[0].Value, "xxxxxxxx");
cameraBarcodeReaderView.IsDetecting = false;
});
uri = new Uri(taqyeem_url);
var query = HttpUtility.ParseQueryString(uri.Query);
}
catch (Exception ex)
{
await DisplayAlert("Error", ex.Message, "OK");
}
}
Developer technologies | .NET | .NET Multi-platform App UI
Developer technologies | .NET | .NET Multi-platform App UI
Community Center | Not monitored
Community Center | Not monitored
Tag not monitored by Microsoft.
Developer technologies | C#
Developer technologies | C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
Sign in to answer