Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
210 views

I have developed MAUI app using Visual Studio 2022 v 17.14.16 and .NET 9 framework. To enable edge to edge I have done this with below code in MainActivity.cs file. protected override void OnCreate(...
BSB's user avatar
  • 277
1 vote
0 answers
23 views

in .NET MAUI, I am wondering if it is possible to use <ContentPage.MenuBarItems> on pages that weren't navigated to using Appshell. I have tried to apply this code <ContentPage....
Josh's user avatar
  • 11
0 votes
0 answers
33 views

I want to accomplish the following navigations in an Android app written in .net maui. I don't know if I'm using the right approach to navigation and therefore I'm asking for help because: the back ...
Morv's user avatar
  • 420
0 votes
0 answers
42 views

.NET MAUI: Is there a way to hide the Navigation Bar/Title Bar 's bottom line in ios when using Shell?
Dev's user avatar
  • 339
0 votes
0 answers
79 views

I have an expander control inside a CollectionView. The top collectionview, groups the items and the grouped item's title is shown in Expander Header. When the expander is expanded, I want to display ...
sham's user avatar
  • 777
0 votes
0 answers
98 views

Default FlyoutMenu icon (hamburger icon) not shown in .net maui android after navigation, but works fine in windows. Trying to navigate from MainPage to HomePage using below code await Shell....
Chandra sekhar's user avatar
1 vote
2 answers
301 views

I am working on a team developing a MAUI app for engineers. Many of our users have suggested enlarging the back button for better use with gloves. Image shows me setting IconOverride in AppShell.xaml ...
Tom Roberts's user avatar
0 votes
0 answers
121 views

I’m working on a .NET MAUI application where I’ve encountered an issue related to navigation flow and component initialization. Here’s the scenario: When the app is launched for the first time, it ...
Divyesh's user avatar
  • 2,467
1 vote
1 answer
102 views

Tabbar within a MAUI Shell control has built-in functionality to set tint to selected/unselected icons in bottom bar. Therefore all icons have mono color. My goal is to highlight background preserving ...
Serg Tomcat's user avatar
0 votes
1 answer
85 views

I am trying to make a music application. I have a tabbar structure that I defined from Shell (not with xaml but with c#) and I change tabs with this section below. I want my music player to remain ...
Salih Etka Akagündüz's user avatar
1 vote
1 answer
467 views

I am developing an app using .NET MAUI Blazor, where I have a Shell with the following code in MainPage.xaml. I also have a Blazor page named ListOfTask that lists tasks. Below is the code for that ...
ZCoder's user avatar
  • 2,339
0 votes
0 answers
89 views

I have AppShell.xaml as below, <Shell> <TabBar> <Tab Title="Home"> <Tab.Icon> <FontImageSource FontFamily="...
Smit Rathod's user avatar
0 votes
1 answer
115 views

Above is my tabbar code I want to set the width of top tabbar items so that it fits to screen enter image description here I am using 3 toptabs inside 1st bottom tab, so as the bottoms tabs are fit to ...
Meghna Singh's user avatar
0 votes
1 answer
276 views

With reference to https://learn.microsoft.com/en-us/dotnet/maui/fundamentals/shell/navigation?view=net-maui-8.0 I see that the IconOverride takes an ImageSource parameter, hence, a FontImageSource. ...
Kasper Sommer's user avatar
1 vote
1 answer
141 views

I tried a lot to hide/disable Hover effect as the below form app but I can't get the item that has this effect the issue when I click on any Menu tap makes a short hover circle and it affects UI Badly ...
Ibrahim El Aidi's user avatar
0 votes
0 answers
168 views

i have a custom search handler which is used inside the content page xaml(this is the main page which is the first flyout item in the shell).I also have multiple flyout items. From my first flyout ...
Naga vignesh's user avatar
0 votes
1 answer
123 views

I can't figure out how to create a custom ItemTemplate for a Shell object AppShell.xaml.cs using AppStockAndOrdersMAUI.Views.Orders; using CommunityToolkit.Maui.Markup; namespace ...
WebMorda's user avatar
  • 101
1 vote
1 answer
957 views

I am using a TabBar with sub Tabs. But the problem here is, that the Icons will not be displayed in the Sub Tab Area. My icon for my TabBar item "Start" and "Settings" loads ...
Nejox's user avatar
  • 41
0 votes
1 answer
557 views

I have a xamarin custom picker renderer that has the drop down arrow I am trying to convert to a handler in MAUI. I have successfully converted the Android one but I am at a loss for iOS. Any tips ...
scott lafoy's user avatar
  • 1,073
0 votes
0 answers
517 views

I have a .NET MAUI Shell app with several bottom tabs and 3 top tabs in one of them. If I select a top tab that isn't the first, there is a sliding/scrolling animation to go to that top tab. So far, ...
Naryoril's user avatar
  • 620
0 votes
1 answer
117 views

In my .NET MAUI 8.0 app, I can't find the property to set the colour of the vertical bar in the shell flyout menu item as shown in the picture below. The image is from a sample MAUI app (...
Rom Eh's user avatar
  • 2,071
1 vote
1 answer
1k views

I have the following appshell <?xml version="1.0" encoding="UTF-8" ?> <Shell x:Class="myApp.AppShell" xmlns="http://schemas.microsoft.com/dotnet/...
user1180360's user avatar
1 vote
1 answer
1k views

I'm using .NET MAUI Shell Tabbar, and I'm trying to increase the font size of TabBar menu items specifically on the iOS platform.could you provide an example code snippet for this? I appreciate any ...
Alpay Çalışır's user avatar
0 votes
1 answer
2k views

I'm unable to get modals to work when targeting Mac Catalyst, and have tried 3 different approaches. The first approach was this video: https://www.youtube.com/watch?v=yM7opXlu-MU That approach works ...
hunterwendroff's user avatar
1 vote
1 answer
773 views

I have an app in .NET MAUI with XAML for the UI. I converted all the XAML to C# markup except for the AppShell. A sample of what I want to convert is below: <ShellItem Route="LoginPage"&...
James's user avatar
  • 13