Questions tagged [app-shell]

50 questions
7
votes
1 answer

Navigate to page on start in .NET Maui app

Seems like a simple question, but I haven't been able to find a simple answer. Essentially I want to choose which page in the app to start on based on some stored state. I added a GoToAsync call in the AppShell constructor, but this didn't…
Ryan
  • 123
  • 1
  • 9
6
votes
1 answer

caching app shell in a React PWA with Server-Side rendering

So lets say you have a React-based mobile web app, that takes advantage of server-side rendering for the initial view ( for speed + SEO reasons ). There is no "index.html" file - the index file is dynamically built server-side and returned in the…
5
votes
1 answer

angular 2 : possible to combine app shell together with universal rendering

I have a standard angular-cli generated project. Does it make sense to create both an app shell for it and, also combine it with ng-universal's server rendering technique ? If so , then what's the best way to go about it ?
Aman Gupta
  • 7,883
  • 5
  • 16
  • 24
4
votes
1 answer

How pass parameter when navigate to another page (Shell)

I've just started trying to use MAUI in Visual studio to develop a multiplatform app. I have managed to use shell navigation and this works well using the flyout. What I want to do is have a button click which navigates to another page passing a…
Andrew Taylor
  • 145
  • 13
3
votes
0 answers

Maui AppShell - Navigate on Open

I'm having some conceptual issues with the Maui AppShell. When I start my application, I want to present my users with The login page if they're not authenticated. The onboarding page if they're authenticated, but haven't filled in basic…
Quark Soup
  • 4,272
  • 3
  • 42
  • 74
3
votes
1 answer

How to add subresources integrity with Angular appShell build

I built an application with Angular CLI 9. I patched the package.json file with : { "scripts": { "build:prod": "ng build --prod --subresource-integrity", "prebuild:prod": "TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' ts-node…
Doubidou
  • 1,573
  • 3
  • 18
  • 35
3
votes
0 answers

What is the difference between appShell and universal in Angular 5?

I need server side rendering in my angular application to get the benefit of both SEO and boosting the load time of my app but I got confused with appShell As I read, I found that Angular Universal can solve my problems, so what appShell is for?
Raeef Refai
  • 1,471
  • 14
  • 26
3
votes
0 answers

installing an app shell for my angular4 app

I've seen many articles online about the app shell and how it's used but it just doesn't seem to work for me following a very clear article from Angular Universirty I got the following error C:\projects\NoddlesHub>ng generate app-shell…
TOLULOPE ADETULA
  • 768
  • 1
  • 12
  • 27
2
votes
2 answers

MAUI AppShell route works on Android but not on Windows

I made a demo maui app and I have found that this line of code: AppShell.Current.GoToAsync("//HomeMenu"); works fine when the app is run to an Android local device but does not work when the app is running as a Windows app. I have registered the…
pdschuller
  • 584
  • 6
  • 26
2
votes
1 answer

AppShell- Failed to Navigate Back, Ambiguous routes matched for.... but i've only registered routes once

I am building an Xamarin Forms app for iOS and Android. I registered my routes in AppShell.xaml.cs globally like this: **-AppShell.xaml.cs-** Routes.Add(nameof(HousingFolderPage),…
Nabil Akhlaque
  • 192
  • 1
  • 8
2
votes
3 answers

How to customize the navigation title view of MAUI ContentPage

In Xamarin, I frequently used to customize the navigation title bar in my views. Now that I am working in MAUI, this tag seems to have no effect on a ShellItem view. Here is AppShell.xaml:
Chuck Krutsinger
  • 2,830
  • 4
  • 28
  • 50
2
votes
2 answers

Xamarin Forms: How Can I Change the FlyoutItem.Icon's Color When It Is Selected/Deselected?

I am using Material Design Font Icons as my icon source for my project. The trouble is, since it's a font it needs a different color when selected vs. when deselected (as shown - the deselected white ones have white icons, which isn't…
Scott Baker
  • 10,013
  • 17
  • 56
  • 102
2
votes
2 answers

Xamarin App Shell - closing the flyout menu in code

The design of my app requires that I have a button in the Flyout Header, a separate view, which navigates to a page Unlike the flyout items themselves though, when I click on the button, the page loads under the flyout header which stays open Is…
Journeyman1234
  • 547
  • 4
  • 18
2
votes
1 answer

How do you account for server-side redirects in an app shell?

I am working on implementing a service worker which caches and serves an app shell to certain routes on my site. I am running into a problem in that the route can sometimes (based on a query parameter, say) cause a redirect on the server side.…
Mike
  • 3,331
  • 2
  • 18
  • 22
1
vote
1 answer

.NET Maui Tabs with Breadcrumb Navigation

I was trying to make a tabbed view with a breadcrumb navigation, unfortunately the titles are not working the way they're supposed to. When it seems like the NavigationStack is empty so the previous site title gets overwritten with the current…
Niko Klemm
  • 69
  • 5
1
2 3 4