Questions tagged [maui-shell]
11 questions
1
vote
2 answers
How can I customize the Title in a .NET MAUI Flyout Shell app?
How to reduce the title spacing?
When I change hamburger icon, its icon color is always white. What's wrong?
Can I set Title font size and font family?
On Android it's possible to set contentInsetLeft, contentInsetStart,…

user21368546
- 11
- 3
1
vote
2 answers
In MAUI app, how do I Use Dependency Injection in AppShell
I would like to use a service I created (with the interface IAuthenticationService ) inside the AppShell of a MAUI app (AppShell.xaml.cs).
In other words to do something like this:
public partial class AppShell : Shell
private readonly…

adinas
- 4,150
- 3
- 37
- 47
1
vote
2 answers
.Net MAUI - Shell Navigation Back Button Title (iOS)
I have noticed one issue in Shell Navigation title. When setting ContentPage's Title property it shows same text with Back button also. Used NavigationPage.BackButtonTitle property as well from xaml still its not working.
For…

Divyesh
- 2,085
- 20
- 35
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
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
.Net MAUI - Page\View load missing flyout menu option
I have a simple Maui app.
I have a flyout menu that works well and navigates to the required Views.
However when I try to load a view (UserHomeScreen) from a button click event in another view (LoginScreen) the flyout menu icon doesn't appear…

Chris Smith
- 21
- 5
0
votes
0 answers
.NET Maui Shell Navigation - Navigate to Login Page without the possibility to get back
after the App is starting im on my InitPage, in there i want to go to another Page if some value is getting checked, i want to navigate to my LoginPage if not Tokens etc. are found with Shell.GoToAsync("//LoginView");
if i try to do that im getting…

Pascal
- 79
- 1
- 5
0
votes
0 answers
Change the selected menu item on shell flyout while navigating via code
I have a shell flyout menu on my maui app and I use routing on code to navigate as well.
//on…

Barreto
- 374
- 2
- 14
0
votes
0 answers
Disable top tab change by swiping in .NET MAUI Shell
How do I disable changing the top tab by swiping left or right in a .NET MAUI app using Shell?
I have a CarouselView on a page that is displayed within a top tab, but when doing a normal swiping gesture, it doesn't go to the next item in the…

Naryoril
- 401
- 6
- 19
0
votes
1 answer
Using Maui Shell navigation how to push a page?
I'm implementing a Maui app using Shell navigation.
I have a navigation hieararchy set up, I understand how to navigate from one page to the other using page routes.
However, I have a page that can be opened from multiple source pages, let's call…

balintn
- 988
- 1
- 9
- 19
0
votes
2 answers
Hiding Top Navigations Bar in one of the shell tabs
I've been trying to achieve hiding Top Navigations Bar in one of the shell tabs with no success.
I tried following this Tutorial with no success (might be outdated ?).
Here is my code :

OzZzL
- 1
- 2