...

/

Solution: Converting Shell Application

Solution: Converting Shell Application

Review the solution to converting a flyout MAUI Shell app into a tabbed Shell app.

The completed solution is presented in the code playground below:

<?xml version = "1.0" encoding = "UTF-8" ?>
<Application xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
             xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
             xmlns:local="clr-namespace:ShellAppExample"
             x:Class="ShellAppExample.App">
    <Application.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="Resources/Styles/Colors.xaml" />
                <ResourceDictionary Source="Resources/Styles/Styles.xaml" />
            </ResourceDictionary.MergedDictionaries>
        </ResourceDictionary>
    </Application.Resources>
</Application>
Tabbed MAUI Shell Application project

Solving the challenge

These are the steps we followed to solve each of the tasks.

Changing the format of the Shell app

...