Questions tagged [.net-maui.shell]

75 questions
1
vote
1 answer

Problem: clicking on a ShellContent in the hamburger menu hides FlyoutItem bar

In my .Net MAUI app, in Shell.xaml I have both FlayoutItem with multiple ShellContents inside and several MenuItems and ShellContents : Shell.FlyoutBehavior="Flyout" >
David Shochet
  • 5,035
  • 11
  • 57
  • 105
1
vote
1 answer

MAUI Shell Navigation. Wrong page briefly displayed

I am creating a basic MAUI app (Android only) using very basic Shell Navigation. Could anyone confirm (or not) whether the following is a valid way to do this? It works, but when navigating, occasionally the wrong page is briefly displayed before…
1
vote
1 answer

How to center title text of TabBar Tab?

This is a follow-up question, I am using the custom renderer in Shell Custom Renderer reset color set by TabBarUnselectedColor In my .Net MAUI app, I use a TabBar in AppShell:
David Shochet
  • 5,035
  • 11
  • 57
  • 105
0
votes
1 answer

How do I navigate from ShellContent/a ContentPage to a TabBar/TabbedPage in .NET MAUI Shell?

In my shell, I have defined a route "main". Nested underneath, I have defined a tabbar with the route "tabs". I want to navigate from my homepage to this tab page using a button. The tabpage should have a back button to get back to the homepage…
BurkusCat
  • 41
  • 7
0
votes
0 answers

TabBar in .NET MAUI shell app is behind on-screen bottom toolbar

I have a MAUI app targeting Android. Im using shell navigation together w/ a TabBar like this:
Peter Rundqvist
  • 275
  • 3
  • 18
0
votes
1 answer

MAUI How to set the TopBar background color?

How can I change / set the color of the top bar? (for all pages at my app)
Frank Mehlhop
  • 1,480
  • 4
  • 25
  • 48
0
votes
1 answer

How can i add a Floating Action Button to bottom tabbar in .net MAUI?

i need to create custome bottom tabbar to add a Floating Action Button, using .NET MAUI like this picture: enter image description here i see this solution in the below link but it's for Xamarin.Forms and i can't using it with .NET…
0
votes
3 answers

Prior pages are still active and never disposed

My app navigates using the following shell command: await Shell.Current.GoToAsync("PageName"); I've been experiencing performance issues which become worse the longer you use the app so I figured I might not be releasing resources. On further…
Sutts99
  • 21
  • 6
0
votes
1 answer

BindingContext is null when OnShellNavigating event is fired in .NET MAUI Shell application

I'm working on a .Net MAUI shell application project where I have a shell with multiple tabs in the logbook flyout. The requirement is for each tab to display a different set of log entries, for example, 'all' log entries or only those log entries…
cramar
  • 124
  • 1
  • 16
0
votes
1 answer

.Net Maui Tab Bar ShellContent Open Url instead of ContentPage

I am currently using the Tab Bar Navigation within my project and would like selecting a Tab to open a new External Browser. I have tried navigating to the page and then loading a webview but this has too many limitations and just will not…
Andy Donegan
  • 782
  • 1
  • 9
  • 30
0
votes
1 answer

Existing Blazor Web Assembly Web APP Not Run in the MAUI Blazor Hybrid Project

I already have existing Blazor web assembly Project up and running perfect. Now my target is to run this same Web app into MAUI Blazor Hybrid App. to Run this project I follow the following project structure. 1- API client 2- WebApp Blazor Client…
0
votes
1 answer

My app in .net maui isnt openning after write a pair of binding lines

(first of all, sorry for my english). Im making a view to make a new element. the element have some common attributes and some that depends on the child we choose in the radiobutton. i want to se only the stack 1(from series) if the radio button…
0
votes
0 answers

Why do images in Grid Layout in a List view spans to all columns in IOS on .Net MAUI?

I have Grid Layout in a list view, which has 2 columns and 2 rows, it displays an image and some text on right of image.
Aroosa
  • 35
  • 4
0
votes
1 answer

Disabling click for ShellContent inside FlyoutItem in .net MAUI

I have a problem, I can't disable click for ShellContent inside FlyoutItem. More specifically I put a lot of ShellContent inside FlyoutItem and chose to display it as multiple items.
Guf
  • 3
  • 2
0
votes
0 answers

.net Maui / Xamarin Forms : Shell.Current.GoToAsync and back button

I'm facing an issue with my back buttons in my .Net Maui app using shell in my case i have 3 pages for authentication AuthHome where there is a Login button when the user click on her he will be navigated to the login page than after he login he is…