FlyoutPage.Flyout Width
Hi, How I set in windows net 9 the width of FlyoutPage.Flyout(menu)? Thanks,
ORIENTATION BEHAVIOR
Consider the following simple test program, in NET MAUI 8.0: <?xml version="1.0" encoding="utf-8" ?> <ContentPage xmlns="http://schemas.microsoft.com/dotnet/2021/maui" …
Webview not working in MAUI
I had created a sample MAUI solution with the .Net 9, and added a webview. and added the following piece of code in the mainpage.xaml <StackLayout Padding="30,0" Spacing="25"> <WebView…
AADSTS165000: invalid Request: The request tokens do not match the user context,
MAUI. Android app, use Oauth2D to login. Always get the error: Requestld:50664542-03a0-48dc-b330-acf123cf9f00 Correlationld:27fdf9bd-1dd4-4b3b-a556-34f7c03c17af Timestamp:2025-04-02T02:58:37Z Message:AADSTS165000: invalid Request: The request tokens do…
Images show up on other devices but not windows build
Hi, I am building a .net maui application my .png's show up on android and android emulators But I am unable to get the same image on windows build, or any image for that matter of fact Here is the code that use. var var image = new Image() { …
.NET MAUI - Camera View - Images Portrait
Hello, I'm using CameraView from CommunityToolkit.Maui.Camera, and I take photos that I display in another view. When I take the image with the iPad in portrait mode, the photo I took displays fine. I even save it to disk and display it later in another…
I am providing the icon still facing issue in .net maui single structured project
Validation failed (409) Missing required icon file. The bundle does not contain an app icon for iPhone / iPod Touch of exactly '120x120' pixels, in .png format for iOS versions >= 10.0. To support older versions of iOS, the icon may be required in the…
Crashing while opening the webview in maui - Net 9
Recently we had migrated our application from the .net 8 to the .net 9. we are having the web view in our application. in the .Net 8 the webview is working fine. where comes to the .net 9 the application is crashing while opening that page with the…
the rotation is not work as expected?
I am using .net-android and want to use canvas to draw cube and rotate it.this is the code:`public class XyCube { public float width; public float height; public Color Color; public float center_x; public float center_y; public float…
can not add this jar file to .net android?
this is jar file which to search BLE I can use it in android but can not use it in .net-android WCHBLELibrary.log you can rename this file to jar I create in android binding project and add it. and get dll file and add it to .net-android. If I call the…
How to cancel navigation to a page in .NET MAUI
Please tell me how I can stop navigation to a page in a .NET MAUI Shell app if, for example, the user is not authorized to access the page. I have a nice authentication system and I have access and refresh tokens for communicating with the server, but…
Where to get App SID for a Windows Notification Server if I have a Entra Id Line of Business App?
I have a WinUI .NET Maui Windows App that does not get publish on the Windows Store - it is a Line of Business app - the Windows Push Notification server requires that I get the App SID and Security Key - where would I get that for a LOB app.
MAUI deep linking handling
I am new to MAUI app development. I need a sample code snippet on how to handle deep linking using a custom scheme. like myapp://payment/success
Alert header not seen well
Hi, After installing the app as exe in windows .NET 9, the alert header go to right and button change order. bool answer = await Application.Current.MainPage.DisplayAlert("Format USB", "Are you sure you want to format the USB…
Building a MAUI app from Visual studio 2022 on Windows to run it on Mac, Mac acts as a remote build host. ?
Hi, I have created the MAUI and Paired to the Mac system using ip address from Visual studio. Selected the target as "Mac Catalyst" and while running from VS in windows i am getting below error, Same way i tried from another windows…
Splash Screen not showing up for windows build on .net maui
Hello all, So I created a simple custom splash screen, it works for android but not on a windows desktop. Here is the code public partial class SplashScreen : ContentPage { private ContinousAudio continousAudio; public…
>Net Maui - Passing object between pages
I'm having trouble getting my DetailsPage to show the Observation obs object passed from my ResultsPage. I have a TapGestureRecognizer_Tapped method in the code behind the ResultsPage private async void TapGestureRecognizer_Tapped(object sender,…
dotnet workload restore issue
came back to an old brooding .net maui project from last year. at the time, it was compiling and running fine. after starting it up again, ive run into compile issues. Error (active) NETSDK1147 To build this project, the following workloads must be…
how to write and read file in usb storage in .net -android?
I have android pad and there is usb disk and how to read file and write file ?
Entry Focus issue in scroll view Maui
I had created a view with 30 entries in a scroll view, for suppose I focus on the 16 entry and click in the background Entry 1 is being focused automatically. Here is the code for reference. <ScrollView BackgroundColor="Green" …