Hi all,
Currently I am tring to update my Xamarin.Forms Application to Xamarin.Forms 5
Last issue I've faced an issue that global ShellItem before FlyoutItem not shown at all
Here is small example:
```xaml
<!-- Loading/WelcomePage -->
<ShellItem
Route="loading"
FlyoutItem.IsVisible="False">
<ShellContent ... />
</ShellItem>
...
<FlyoutItem
Route="main"
FlyoutDisplayOptions="AsMultipleItems">
<ShellContent ... />
...
</FlyoutItem>
```
Previous version first of all displayed first ShellItem (Splash Screen) and than according the navigation route switched to FlyoutItem if needed, but current Xamarin.Forms 5 seems like changed this behavior ...
How to first display some Splash Screen Page and then switched FlyoutItem ?