realtime update
I have a service, that is uploading to firestore async Task LoadOrInitializeTurbineAsync() { var turbinesRef = _firestoreDb!.Collection(collectionName); var snapshot = await turbinesRef.GetSnapshotAsync(); if (snapshot.Count ==…
How to get a particular column from table and display in in label and not in the list in sqlite database in mvvm model
In MVVM model using async connection, I want to retrieve just one column from my async table to a label not to list. all sample I am seeing put all column in the list . I want only one mesa1 column to be displayed in a label.text. public async Task
NFC plugin or library for .NET Maui Android?
I've tried all or most of the proposed solutions on the web to try and to get NFC to work in .NET Maui, and it is such a pain. The app that I need to build is not big, a login page, a barcode scanner page, and then an NFC page. I have the first 2 working…
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,…
XML Xml Serialization error in MAUI iOS
Good afternoon. We are developing a mobile application for iOS on MAUI (.net 9-0). When using the Apple development profile, our application is assembled and deployed on the device without any problems (using the IDE Rider). But when we change the Apple…
System.NotSupportedException: The given path's format is not supported
I have a project that has been building and publishing successfully. However, after attempting to solve the iOS 18 white screen issue, a new error has started to appear, and I am unsure where to look to fix it. The following changes have been made since…
taking pctures
I have this method and works fine async Task TakePhoto() { var photo = await MediaPicker.Default.CapturePhotoAsync(); if (photo != null) { // Getting the file result information using Stream sourceStream =…
MAUI: Slider ThumbImageSource is not moving after disabling the slider to select lower time
Using this and this threads I implemented the slider reduction prevention logic on my MAUI application. My requirement is that after dragging the slider, the user should not be allowed to select a lower value. However, if they choose a higher value, it…
app broken help
The app is broken in release mode Thís is a video going thru everything https://reccloud.com/u/lvtemaz I don't know how to read the logcart there is a bunch of things I created another app, with a collectionview and I put it in release mode and works …
Change ToolBarItem text color in .NET MAUI
I want to change the textcolor of the ToolbarItem based on a binding but seems like .net maui does not have textcolor property to set the ToolbarItem text color. Is there a way I can change the text color in toolbar in maui?
.NET MAUI cannot find Android emulators on Mac OS 15
I recently updated Mac OS to Sequoia (15). After I opened my .NET MAUI project in VS Code and waited for all checks to finish, I selected ".NET MAUI: Pick Android Device" from Command Palette, but there was nothing for me to choose from. I have…
>net maui error cs1001 Identifer expected (net8.0)
I've trying to convert my Xamarin project to .Net Maui for the couple of months, I finally got all of the pages to compile (so Far I think) I'm only getting 4 error now, cs1001 Idenitfier expected MyProject (net8.0-android) App.xaml.sg.cs line…
I cannot go back
I am trying to go back when I press the back button public partial class AddNewTurbinePageViewModel(TurbinesService turbinesService, DeviceLanguageService deviceLanguageService, IFilePicker filePicker, IMediaPicker mediaPicker,…
What is the memory profiling tool available for Maui - Android app
Xamarin came with a memory / CPU tool as part of Visual studio. I noticed that this tool is no more part of Visual studio. I migrated my app to Maui, and would like to know what is the alternative to this profiling tool.
HOW TO GENERATE A TAPPED EVENT PROGRAMMATICALLY
Is it possible to "send" programmatically a Tapped event to a ContentPage? i.e. simulate that the user tapped somewhere. the platform is Android. In my ContentPage I set HideSoftInputOnTapped="True" There is an Entry: …
how to draw on textureview?
how to draw on textureview in .net android? https://learn.microsoft.com/en-us/answers/questions/2113199/how-to-use-textureview-in-net-android?page=1&orderby=helpful&comment=answer-1870509#newest-answer-comment here I know how to add texture view…
how to use textureView in .net android?
how to use texture view? first please createandroid application not xamarin not maui. then add code : <TextureView android:layout_width="match_parent" android:layout_height="@dimen/canvas_height" …
how to enable debug in release mode in MAUI mobile application
How can I enable debugging in release mode? Some functionalities are not working when I release the app, but they work in debug mode. I've tried multiple methods but haven't found a proper solution. Inside .csproj file <PropertyGroup…
Cannot Use RecyclerView in .NET Android MAUI
With the ended support of Xamarin, I am working on converting my Xamarin.Android app to .NET Android MAUI (my app is Android only). In my xml layout file(s), I am able to use androidx.recyclerview.widget.RecyclerView without any complaints from Visual…
Regenerating AndroidResource(s) For .NET for Android Using Visual Studio 2022
I am working on converting a Xamarin.Android app to .NET for Android. I have created an entirely new Solution & Project in Visual Studio 2022 & I used the Android Application Project Template. Visual Studio 2022 creates the following…