Hello!
I have the following simplified pages structure:
// shell section has multiple items, so that my page has an ability to display several screens:
[Shell]
[ShellItem]
[ShellSection]
[ShellContent Route="Photo" Title="Video" ContentTemplate="{DataTemplate views:PhotoCapturePage}"]
[ShellContent Route="SlowVideo" Title="Video Lapse" ContentTemplate="{DataTemplate views:SlowVideoCapturePage}"]
// PhotoCapturePage contains a set of TollBar items.
[ContentPage x:Class="CameraApp.Views.PhotoCapturePage"]
[ContentPage.ToolbarItems]
[ToolbarItem
Text="Resolution"
Order="Primary"
Priority="0"
Command="{Binding OpenSettingCommand}"
CommandParameter="PhotoResolutions" ]
[ToolbarItem
Text="EV"
Order="Primary"
Priority="0"
Command="{Binding OpenSettingCommand}"
CommandParameter="EVs" ]
sorry for formatting, since github does not allow to render tags
The issue is that when I open a ToolBar on PhotoCapturePage and try to rotate Bezel (to scroll through my ToolBar items) - instead the page is navigated to items inside ShellSection. Bezel context is not bound to the ToolBar.
Expected Behavior:
Bezel rotation on the opened ToolBar page scrolls between ToolBar items.
Tizen.Wearable.CircularUI version 1.5.0
Xamarin.Forms version 4.7.0
Tizen.Net 6.0.0
If that is no a bug, could you please give a hint how to fix the problem?
Thank you.