combine the titlebaar behavior with code behind
I made a title bar class, that inherits from title bar namespace METROWIND { public class AppTitleBar: TitleBar { public SfComboBox ComboBox { get; set; } public AppTitleBar() { ComboBox = CreateComboBox()!; …
Image placeHolder
For some reason the URL image https://www.sciencedaily.com/images/scidaily-icon.png doesn't want to show on desktop in my collection view, even though is there Android Desktop Website (Edge) So, I have two possible solutions find out why it doesn't…
Execute command rom another view Model
I know the mvvm pattern is equal to no code behind, but sometimes is impossible to avoid code behind, especially, when you need access to a UI component in your vm My app has several pages ChargeStationPage TurbinesCollectionPage NewPage …
How to focus and select text in ListView
Hello, I have such ListView: <ListView x:Name="lvFileList" Grid.Row="1" Margin="0,0,0,0" HorizontalOptions="FillAndExpand" VerticalOptions="Start" …
I’m encountering an issue with the NET-iOS.Naxam.FSCalendar library while migrating my project from .NET 8 to .NET 9
/usr/local/share/dotnet/packs/Microsoft.iOS.Sdk.net8.0_18.0/18.0.8314/targets/Xamarin.Shared.Sdk.targets(1648,3): error : clang++ exited with code 1: ld: building for 'iOS-simulator', but linking in dylib…
Multicast UDP Packets Stopped Working
I have a MAUI ios and android app. I originally created it with net7 and then updated it to net8. I use the following code to "ping" a device on my network that I also created: try { using (UdpClient udpClient = new UdpClient(new…
Using Business Logic Classes in C# with .NET MAUI
What are the best practices for creating business logic classes in C# for a bank application? Specifically, how do business logic classes interact with data access classes, and how can expression-bodied members be utilized in this context?
maps reload on internet change
I have an issue, where I have a page created ChargeStagionPage <maps:Map x:Name="ChargingStationMap" ItemsSource="{x:Binding TurbinePins}" VerticalOptions="FillAndExpand"> …
How to Enable Zoom Feature for BlazorWebView MAUI Hybrid on Android?
Hello, I am working on a project using .NET MAUI with Blazor Hybrid. I want to enable the zoom feature (pinch-to-zoom and double-tap-to-zoom) for the BlazorWebView when running on an Android device. Currently, the content in the BlazorWebView is not…
Flyout menu overlays the status bar and the bottom bar
Hello, I am new in .NET MAUI and I would like to ask question related the flyout menu. When I built the example app in visual studio to my Android emulator, it seems that the flyout menu overlays the the status bar and the bottom bar. Is it default…
How to Increase TabbedPage Tab Title Font Size in .NET MAUI?
Hi, I am working on a .NET MAUI application and using a TabbedPage for navigation. I want to increase the font size of the tab titles on the TabBar. Here is the XAML code for my TabbedPage: <?xml version="1.0" encoding="utf-8"…
.NET MAUI Not Properly Recognizing iOS Provisioning Profiles, Even Those Created Minutes Prior
To all: I've been trying to port an app I wrote last summer in Xamarin Forms over to the latest version of .NET MAUI. I had few issues (but not none) with the Android version, but - as usual - iOS is so arcane that either Microsoft's engineers are…
Why are the new keyboard types in .net maui 9 such as Date not recognized in xaml
I upgraded to VS 2022 17.12.9 and made changes for .NET 9. When I try to set any of the new .NET MAUI keyboard types for .NET 9 (Password, Date, Time) in XAML, they are not recognized. Is there some other update I need to make? Thank you.
show an age when collectionview is done
I have a page, that everything gets the data by binding <Grid RowDefinitions="Auto,Auto,*,*" RowSpacing="5"> <ActivityIndicator HorizontalOptions="CenterAndExpand" …
tile bar and flyout
I am calling the Maui connectivity in the App Shell View model public partial class AppShellViewModel: ObservableObject, IPinClickHandler { private AppShell? _shell; private readonly IServiceProvider _serviceProvider; private…
How to clear previous login account from google SSO
Hi, my iOS app using plugin.Firebase for google SSO. But the SSO show me a list of account which login previously, I can login with those account without inputting password. Anyway I can clean up the list or force to enter password? Thank you. kind…
How can I open a new browser window and a specific URL on Android/iOS?
I want to open a new browser window and a specific URL when the user taps on a text or button in my Android/iOS game. How can I open the URL(myurl) in a new browser window? using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; using…
How to disable opening of flyout menu on swipe in Android and iOS
I had created a flyout menu, it is opening when i swipe from left to right on the screen, how to disable opening of flyout on swipe. FYI - im not using shell Thanks
Firebase Analytics not logging events in MAUI .net9 for both iOS and Android ?
Hi, Firebase dashboard is not registering any logs for my MAUI app. I am using Xamarin.firebase.Analytics for Android and AdamE.Firebase.iOS.Analytics for iOS. .csproj <ItemGroup Condition="'$(TargetFramework)' == 'net9.0-ios'"> …
MAUI iOS pipelines are failing from the recent iOS SDK release
We are working on the MAUI apps and we created iOS pipelines for the continuos integration. And our pipelines were working well till Sept and after that they started failing without any changes. Unable to identify the issue. The MAC agent that we tried…