what is the bypass code for Williamsburg County School District
I really need to know my school bypass code if you don't give it to me I'm goingf you don't I'm going to sue you again and again and again and again and again and again and again and again to sue you smcd., , mkfvm m vmk ml,fr.., n…
.NET MAUI
FlyoutPage.Flyout Width
Hi, How I set in windows net 9 the width of FlyoutPage.Flyout(menu)? Thanks,
.NET MAUI
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…
.NET MAUI
Smooth Transition Between Pages with and Without Navigation Bars in MAUI
In a .NET MAUI application, I have a scenario where I'm navigating from a page without a navigation bar (NavigationPage.SetHasNavigationBar(this, false)) to a page that includes a navigation bar. During the transition, the appearance of the navigation…
.NET MAUI
Empty Carousel view
I'm developing a MAUI application and encountering an issue with the CarouselView control. The indicators in the CarouselView appear correctly according to the number of items in my ObservableCollection<string> which contains the filenames of my…
.NET MAUI
Observable Collection OnPropertyChanged Performance Issue
While Updating Values to Observable Collection, OnPropertyChanged() takes a lot of time to load and render in UI. Because of this it's takes around a minute to update the list and taking lot of time for updating if few more list updating at the same…
.NET MAUI
MAUI: Android: Foreground service is not running
I have integrated foreground service like below in my MAUI application. MyForegroundService.cs under Platforms.Android // MyForegroundService.cs using Android.App; using Android.Content; using Android.Content.PM; using Android.OS; using…
.NET MAUI
how to remove event handler in .net-android?
xxx.Click+=(sender,e)=>{}; how to remove it? then I add another
.NET MAUI
how to read 3d data in dxf file in .net android?
I know how to read 2d entities in dxf file but how to read 3d path or shapes in dxf file in .net android?
.NET MAUI
Create an IPA from Windows MAUI iOS + Extensions
Hi, we have a MAUI project with iOS extensions. We can run them on emulators and create the IPA either in Visual Studio or Visual Code on a Mac. Due to dotfuscator issues, we need to create the IPA, but now from Windows! We can create the IPA using the…
.NET MAUI
How to create an onboard screen for my live .NET MAUI application?
I need to create a tutorial for the first time users. Basically, it should explain all the features within the application. there should be 3 buttons Next,Previous,Skip. How to create (Green highlighted popup) this in my application. Until they complete…
.NET 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…
.NET MAUI
Workaround for WebAuthenticator crash affecting Android on .NET MAUI
When using WebAuthenticator for .NET MAUI and the browser first launches, the app crashes in the background. When the app is relaunched, the browser can be opened again and the WebAuthenticator process succeeds without a problem. This affects Android and…
.NET MAUI
Is it possible to deploy a .net maui application on Android Go Edition
Is it possible to deploy a .net maui application on Android Go Edition?
.NET MAUI
Detect Scrolled to end of webview to enable a button in maui
I have a custom renderer like this where ScrollWebView is my custom control from webview with IsBottomReached property. I tried registering this Renderer in mauiprogram class, then it started crashing with an exception of "Specified cast is not…
.NET MAUI
Why does Live Preview not work on my VS 2022 maui project
Hi, I am using VS 2022 and have a .NET MAUI project. The issue is that Live Preview doesn't seem to work. I watched the video here: https://www.youtube.com/watch?v=nEOvX3YKw_E However, I get the error shown below and I don't have the debug…
.NET MAUI
Visual Studio Debugging
MAUI: Notification icon is blank in Android 15
I am using below code to show the push notification icon in my MAUI application: private void CreateNotificationChannel() { try { var channelId = $"{PackageName}.general"; var notificationManager =…
.NET MAUI
BINDING DOES NOT RECOGNIZE TYPE
I have a custom component that exposes a property 'Amount64' of type Int64; I would like to bind it to a property 'Amount', also of type Int64, in the host page: <components:MyNumericKeyboard x:Name="keypad" Amount64="{Binding Amount,…
.NET MAUI
Undefined symbols for architecture arm64 Error, while using Native libraries in MAUI iOS
Hi, We are working on MAUI.iOS migration project from Xamarin.iOS. In Xamarin.iOS we have used few iOS Native libraries(.a files). The Xamarion.iOS project was working fine. But we used the native libraries in MAUI.iOS project we are getting below build…
.NET MAUI
My app breaks if I add LoginViewModel
For some reason my app breaks, when I add the loginViewModel to the mainPage I am using firebase, so I register the user, and navigate to the Main Page builder.Services.AddTransient<RegisterPopUp>(); …