Forum Discussion
Example code for Maui Shell
- Nov 08, 2021You can find one such sample for making use of Shell made available in the GitHub repository https://github.com/egvijayanand/dotnet-maui-samples
The Shell feature has been completed recently for .NET MAUI. I think the templates have to catch up to that. That is probably also the reason why there isn't a lot of content for it yet.
However, the API will be exactly the same between Xamarin.Forms and .NET MAUI. You should be able to learn about Shell in Forms and apply that to .NET MAUI. If you really want to do it in .NET MAUI right now, you might want to create a Forms one and see if you can convert that to .NET MAUI. Then you have also learned how to do that 😄
I get that it's not ideal right now, I hope the templates that you can use for this will be there soon.
- BConr715Jun 22, 2022Copper ContributorWhat would be useful are Cookbook examples. Flutter has them and they make things a lot easier. Most people here know now to program the just need the basics of how something is supposed to work. MSDN examples were often that way. Trying to sort this out off someone's demo app code isn't quite so easy.
- Jacob_PerssonNov 08, 2021Copper Contributor
Hi Gerald,
Thank you for the quick response.I should add that I have done a little development in Shell in other Xamarin Forms apps. So I think/hope I got the API part covered.
The problem is overriding 'CreateWindow' in app.xaml.cs
I get a 'Return type must be Window..' and I cannot seem to get around that problem. Hence the request for a Hello World sample.And converting a Forms project to Maui I end up in the same situation 🙂