Replies: 1 comment 3 replies
-
Hi @HakanL! I don't believe there is a specific example for this scenario but, if it helps, here are the current overview docs for the LoadingView: https://platform.uno/docs/articles/external/uno.toolkit.ui/doc/controls/LoadingView.html For your case, I would imagine that you could add a LoadingView into your Shell.xaml and bind it to a property in your view model for your Shell that returns an ILoadable. You could then utilize the Uno.Extensions.Reactive.Messaging package to be able to send a message from any of your view models for the Shell to execute the ILoadable. The Messaging package is using the WinUI Community Toolkit Messenger so you would be able to follow their APIs You may need to overlay this LoadingView on top of the root Frame that your Shell uses for navigation, perhaps @nickrandolph may be able to explain that part better than me? |
Beta Was this translation helpful? Give feedback.
-
Is there an example for how I can use a LoadingView to display an overlay of a progress ring, perhaps added to the Shell, with a method that I can call to tell it to display/hide the progress ring? So I can have a global LoadingView that can be invoked at multiple places/pages.
Beta Was this translation helpful? Give feedback.
All reactions