135 questions
0
votes
0
answers
210
views
Enable edge to edge display is not working if Shell has Flyout behavior in MAUI app
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(...
1
vote
0
answers
23
views
Is there a way to make <ContentPage.MenuBarItems> render for a page on a newly created window?
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....
0
votes
0
answers
33
views
How to properly define navigation and tabs in maui app?
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 ...
0
votes
0
answers
42
views
.NET MAUI: Is there a way to hide the Navigation Bar/Title Bar 's bottom line or border in ios when using Shell
.NET MAUI: Is there a way to hide the Navigation Bar/Title Bar 's bottom line in ios when using Shell?
0
votes
0
answers
79
views
How can I bind data to CollectionView in expander content which is nested inside another CollectionView
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 ...
0
votes
0
answers
98
views
Default FlyoutMenu icon (hamburger icon) not shown in maui android after navigation, but works fine in windows
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....
1
vote
2
answers
301
views
How to change the size of MAUI Shell back button? For improved use when using tablets with gloves
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 ...
0
votes
0
answers
121
views
Can we use InitializeComponent() in the OnAppearing method in .NET MAUI?
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 ...
1
vote
1
answer
102
views
How to preserve original icon colors in Shell
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 ...
0
votes
1
answer
85
views
.net maui put a fixed partition on tabbar
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 ...
1
vote
1
answer
467
views
How to Pass a String Value from MAUI Shell to a Blazor Component Parameter in a MAUI Blazor hybrid App?
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 ...
0
votes
0
answers
89
views
Tab Navigation In MAUI Is Not Showing The Back Button
I have AppShell.xaml as below,
<Shell>
<TabBar>
<Tab Title="Home">
<Tab.Icon>
<FontImageSource FontFamily="...
0
votes
1
answer
115
views
Not able to set Shell top Tabbar width in IOS
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 ...
0
votes
1
answer
276
views
Shell Backbuttonbehaviour iconoverride fontimagesource
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.
...
1
vote
1
answer
141
views
try to disable hover effect during nivation between TabBar Tabs in .NET MAUI
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
...
0
votes
0
answers
168
views
MAUI search handler disappears when navigating between flyout item
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 ...
0
votes
1
answer
123
views
C# markup Maui Can't bind properties
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 ...
1
vote
1
answer
957
views
.NET MAUI Customize Tabs in TabBar
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 ...
0
votes
1
answer
557
views
Maui custom iOS picker renderer conversion
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 ...
0
votes
0
answers
517
views
How to prevent the scrolling/sliding animation to the active top tab when selecting a bottom tab with .NET MAUI Shell?
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, ...
0
votes
1
answer
117
views
Set the color of vertical bar in a Flyour menu item
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 (...
1
vote
1
answer
1k
views
Maui Navigating to tabbar. No back button
I have the following appshell
<?xml version="1.0" encoding="UTF-8" ?>
<Shell
x:Class="myApp.AppShell"
xmlns="http://schemas.microsoft.com/dotnet/...
1
vote
1
answer
1k
views
How to Increase Font Size for TabBar Menu Items in .NET MAUI on iOS?
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 ...
0
votes
1
answer
2k
views
How to show a popup/modal in a .NET MAUI Blazor app targeting macOS?
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 ...
1
vote
1
answer
773
views
Unable to create .net maui AppShell ShellItem and TabBar using C# markup
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"&...