I am developing a .NET Maui application and utilizing the Shell layout.
I need to showcase a persistent view at the bottom of each page, similar to the Spotify player or the Shell.SearchHandler but above the tabs.
<Shell>
<TabBar>
<Tab Title="Home" Icon="home.png">
<ShellContent ContentTemplate="{DataTemplate page:Home}"/>
</Tab>
<Tab Title="Other" Icon="other.png">
<ShellContent ContentTemplate="{DataTemplate page:Other}"/>
</Tab>
</TabBar>
</Shell>
What is the most effective way to accomplish this without duplicating the view code in each individual page?