Questions tagged [.net-maui.shell]

75 questions
1
vote
1 answer

Implementing own SplashScreen in MAUI not working

I wanted to use a SplashScreen in my .NET MAUI App which is showing a JPG FullScreen and also just thinking of showing also Version Information on the same page. When I double click on my Project-File, I can see an ItemGroup in which I set my…
1
vote
0 answers

NET MAUI - Prompt to open file with available apps

I am downloading a pdf document through our application and I want to prompt the user on how they wish to open it. I have tried the Launcher class that is available but I keep getting the following error message: No Activity found to handle Intent…
GANDA1F
  • 307
  • 1
  • 4
  • 13
1
vote
1 answer

Can I set a background image for the bottom tab bar of the Shell in .NET MAUI?

Is it possible to add a background image to the bottom tab bar in a .NET MAUI Shell application? (gray bar in the attached image) UPDATE: this is what I would like to achieve:
egyedg
  • 724
  • 1
  • 6
  • 13
1
vote
1 answer

.net MAUI can't see iOS methods and properties because it's state as disabled

I've recently integrated xamarin forms project to .net maui. I can see android custom define methods but in iOS it's showing as disable. P.S: It's working properly but i didn't get any suggestion for iOS. I've target iOS version as…
Vanjara Sweta
  • 81
  • 1
  • 10
1
vote
1 answer

.NET MAUI Plugin.Firebase.iOS does not exist

I'm using the new Plugin.Firebase plugin to get push notification function working with a clean .NET Maui app-project. I have installed https://github.com/TobiasBuchholz/Plugin.Firebase but for some reson this code is "unreachable" or it does not…
Nabil Akhlaque
  • 192
  • 1
  • 8
1
vote
2 answers

Listview IsEnabled property not working in .Net maui

Listview IsEnabled property not working in .Net Maui. Please look into the below code.
neha
  • 65
  • 8
1
vote
1 answer

NET MAUI, how to set the first page to load depending on do I have a JWT or not in the Shell

For example, if I had a Shell, where I add FlyoutItem(s) in code, I need to set some Content on the app start (for example, depending on that I do have a JWT or not), how can I do that. public partial class AppShell : Shell { public…
Wasyster
  • 2,279
  • 4
  • 26
  • 58
1
vote
1 answer

NET MAUI FlyoutItem need to be dragged from left to right to be visible

This is my AppShell XAML file (not sure this is right):
Wasyster
  • 2,279
  • 4
  • 26
  • 58
1
vote
1 answer

iOS application getting crashed "Could not set up parent class, due to: Invalid generic instantiation" .net MAUI

.net MAUI Project based on .net version 7 getting crashed while I am trying to deploy it on device. Below is the exception I am getting: Visual Studio for Mac version :17.4(build 2406) .net version: .net 7 iPhone 13, iOS 16.3 below are the packages…
Suyash
  • 365
  • 5
  • 18
1
vote
0 answers

How to set a Visual Element to an absolute position on the screen in .net maui?

I'm trying to create an autocomplete control. How it might look can be seen in the picture. At the same time, the hint block itself can be shown both above and below the input field (depending on the position of the block on the page and the…
1
vote
2 answers

How to pass navigation properties in Maui?

I have a Maui app, with an item collection view and an item detail view. When an item is tapped in the collection view, I'd like to navigate to the detail view. I use Maui Shell navigation. The code comes from a Xamarin app, where it used to…
balintn
  • 988
  • 1
  • 9
  • 19
1
vote
1 answer

How to register a non-shell-visible navigation route in Maui Shell?

I have a Maui app, with a page that should not be visible in the Shell items. I try to register it, according to documentation and several articles like this: public partial class AppShell : Shell { public AppShell() { …
balintn
  • 988
  • 1
  • 9
  • 19
1
vote
2 answers

Shell FlyoutItem icon from Font Awesome

I am trying to use FontAwesome icons in FlyoutItem as an icon using FontImageSource. I had success in Xamarin Forms with following setup, but for some reason in NET MAUI it does not work (at least on Windows?)? I am seeing tab item, but there is no…
10101
  • 2,232
  • 3
  • 26
  • 66
1
vote
1 answer

Change the color of the hamburgericon in .netMaui

I have a .netMaui app with a flyoutmenu. The flyouticon or the hamburgericon has a white color. Now I want to change the color when the application is in whitemode. The problem: it doesn't change. I used the Shell.FlyoutIcon property. First I…
Tobination
  • 178
  • 11
1
vote
2 answers

How do I change app shell selected tab colour, MAUI?

I am building a windows app using .NET MAUI and I have a flyout shell with some tabs. I would like to change the colour of the selected item, specifically the little blue bar that shows at the left side of a selected item. shown here I can not find…
Andrew
  • 15
  • 4