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.
maps reload on internet change
I have an issue, where I have a page created <maps:Map x:Name="ChargingStationMap" ItemsSource="{x:Binding TurbinePins}" VerticalOptions="FillAndExpand"> <maps:Map.ItemTemplate> …
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…
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?
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…
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 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
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 …
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…
.NET MAUI - Android - Build failed
I migrated an MAUI Net 8 project from the Xamarin project. when building the application with MAUI Android, it failed with the following exceptions, Microsoft.PackageDependencyResolution.targets(266, 5): [NETSDK1004] Assets file…
Integrating Shopify with .NET MAUI for Data Fetching
What are the steps to authenticate and fetch data from Shopify in a .NET MAUI application? The goal is to retrieve the product lists from Shopify and display the details within the application.
MAUI App with Google-Login
Hi, i try since one week to add a function for app-users, to login or register with Google and so on. At this time, i would use firebase. But only "With Email and Password" have work for me. Can anyone show me please, how can i make a simple…
how to get musics in mobile in MAUI?
I create mp3 player in MAUI and how to get the musics in the mobile? in android and ios?
Why do I get error "provide a properly configured and signed bearer token" when creating cert after upgrade to VS 17.12
I recently upgraded to Visual Studio 2022 17.12. At about the same time, my ios development cert expired. So I needed to create a new development certificate. First I tried to create a one using the "Create Certificate" dropdown by: Choosing…
Take a full, scrolling screenshot of a Blazor Hybrid app
I am trying to find a way to take a screenshot of a Blazor Hybrid page that goes covers the area off screen as well. I tried using html2canvas and was only able to get the current viewport. I tried a DI injected native code that creates a bitmap from a…