I want to use the IsEnabled property of ShellContent object of the AppShell, but this property doesn't seem to have any effect if True or False. If working, this property is very handy, for example, to disable user interaction until some conditions are met (such as loading a page) or to enable/disable menu items based on context (edit, delete, etc actions).
<ShellContent Title="add"
ContentTemplate="{DataTemplate views:AddPage}"
Icon="{OnPlatform Default='add', UWP='Assets/Icons/add.png'}"
Route="AddPage" IsEnabled="False"
Style="{StaticResource AddPage}" />
Is IsEnabled not working just a bug or am I missing something?