Is it possible to open a modal page from the TabBar?
For instance using this snipped code:
<TabBar>
<ShellContent Title="About" Icon="icon_about.png" Route="AboutPage" ContentTemplate="{DataTemplate local:AboutPage}" />
<ShellContent Title="Browse" Icon="icon_feed.png" ContentTemplate="{DataTemplate local:ItemsPage}" />
</TabBar>
If I wanted to open ItemsPage as modal and the content page has got Shell.PresentationMode="ModalAnimated", how could I do it?