Open exendahal opened 5 months ago
My initial gut feel is that you shouldn't be using Shell at all with Burkus.Mvvm.Maui. This library should be used instead of Shell. So I think in your case you'd want to use a TabbedPage
(instead of a TabBar
) like so: https://github.com/BurkusCat/Burkus.Mvvm.Maui/blob/main/samples/DemoApp/Views/Tabs/DemoTabsPage.xaml
Are you able to try the sample app the in the repo (https://github.com/BurkusCat/Burkus.Mvvm.Maui?tab=readme-ov-file#documentation-) to see if it does what you what it to do when it comes to tabs?
I have a Shell Page with several ShellContent items. Here is the code for the Shell Page:
To navigate to the Shell Page, I use the following method:
Requirement:
I need to perform some asynchronous operations in the OnNavigatedTo() method of each ShellContent. How can I achieve this functionality?