What would be the best asp.net option that allows a SQL database and communicates with a .NET MAUI frontend?
I am currently working on designing a cross platform application with .NET MAUI. I've decided to migrate my previous database to a SQL database. Looking at the Microsoft documentation, it showed the asp.net core web MVC project as the standard for using…
database deference betwen devices
I am using sqlite public class LocalDatabaseService { SQLiteConnection _connection; public LocalDatabaseService() { _connection = new SQLiteConnection(Database.DatabasePath, Database.Flags); …
Does .NET MAUI Support iOS 17.6.1?
I have a general question about MAUI support for 17.6.1. I have an app that works on a 17.5 simulator and a physical device running 15.8 but is rejected by the app store when testing against 17.6.1. My configuration is as follows: CommunityToolkit.Maui…
When value of textbox is changed Dropdown is not calculating
I created a code so that Area of Square/Equilateral Triangle can be calculated when selecting dropdown. When I change the dropdown value it works but when textbox is changed please suggest on how to call OnValueChanged @page…
On CurrentPagechange Event of TabbedPage custom Font is not applied on title of last but one Child Page click item
I have TabbedPage in MAUI 8 and API level 34 . I have multiple tabs loading 3 on each Tab change event, 1-I have applied Font to each child Tab as mentioned…
Range validator in MAUI Blazor
Here is a simple app to Add numbers from 0 to 100 , after which I like to perform some statistical operations. Add Insert works fine , I can restrict only 0 to 100 Delete works fine. When editing it is accepting all numbers , I like to restrict 0 to…
Unable to install new sdk's using android sdkmanager in visual studio latest version 2022
I am having issue with sdk manager in visual studio 2022. I want to install android 14 (api level 34) using sdk manager but unable to do that. Facing the issue provided in screenshot I am usng latest visual studio version. I am having good internet…
Why I cannot reference iOS binding library
I created a .net8 MAUI project and an Android and an iOS binding libraries. I can see that in the iOS binding library, the generated classes are created. There are also no errors. But when I tried to reference the classes in the iOS binding library in…
Configure Visual Assets
I'm trying to configure the details when I publish my .NET Maui app using the Project>Publish>Edit App Manifest. In the Visual Assets tab, I can't figure out where to change the "$placeholder$.png" labels after I use the Asset Generator.…
C# App doesn't start up when running Appium WDA on iOS
We are using Appium to test our multi-platform app. (Windows, Android, iOS). This App is written using C# in .Net 8 with MVVMCross. However, since about month or 2 ago, our App crashes on start up on iOS when the Appium xcuitest WebDriverAgent is…
Exception when linking to Microsoft Store Purchase API library from Blazor MAUI Windows App
Hi, I am have written multile Microsoft Store Apps in the UWP and WPF frameworks and published them to the Store. These apps all have to and do call the Microsoft Store Purchase API. Now I'm building a Blazor MAUI Store App and have found apps in the…
ToolTipProperties.Text in MenuFlyoutItem is not working
Hi, I'm in maui windows NET 8, ToolTipProperties.Text is not working. why ? <DataTemplate> <Label Text="{Binding Name}" VerticalTextAlignment="Center" ToolTipProperties.Text="{Binding}" > …
Different border margins for phones and desktops
I currently have this xaml <CollectionView Grid.Row="1" ItemsSource="{Binding NewsList}" SelectionMode="None"> <CollectionView.ItemTemplate> <DataTemplate…
MAUI: Splash screen with 2 logos
I am trying to create a splash screen with 2 logos, one on the sender and one as a footer. But I didn't get such type of implementation in MAUI. Is there any way to do it on MAUI? So I tried platform level integration like below for android. Created…
.Net MAUI Binding for ListView ItemSelected
Hi all, I am trying to bind the ItemSelected of a ListView to a View Model, but am experiencing some issues (due to my own misunderstands around how it all works). I have view: <?xml version="1.0" encoding="utf-8" ?>…
API connection error
I cannot believe an API call is giving me errors lol I really don't know what happening. I tested to if my Api call was ok, and it is ok I get 200 status code OK When I put it in Maui strange things happen Windows Android for Android I made sure to…
How to copy files from selected directory to application directory in iOS using Maui and Community Toolkit folder picker
I want to copy files from a selected directory to the application directory using Maui and Community Toolkit folder picker in iOS. After using the folder picker, I tried to get a list of files in the directory which resulted in the error "Access to…
Archive MAUI iOS project with Visual Studio 2022 success but no archive generated.
Hi, I am trying to publish my MAUI app to app store. The "Archive" window show build succeeded without warning or error, but there is no archive generated in the "Archives" screen of both visual studio & Xcode. But the archive…
How to close MY TOKEN
Hi, I used maui app in mac + vs code in net 8. I used custome token that i get from our system to make call to our custom website. Aim: Before closing the app i need to close the token. Limitations: I can't override the window bacgrounding since all my…
Camera option didn't appeared on MAUI android .net 8.0 WebView
My WebView does not show the camera functionality when the user interacts with the web page. This issue affects the ability to capture or upload images from the page. I have already added the necessary camera-related permissions to the…