You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
091500
changed the title
Bezel rotation works incorrectly on ShellContent page with TollBar Items
Bezel rotation works incorrectly on ShellContent page with ToolBar Items
Mar 5, 2021
Hello @091500, I'm sorry to check the issue too late.
In the following case, since the objects that can be scrolled are nested, it may be a problem depending on the use case to determine the object to interact with bezel.
To prevent this problem, bezel rotation scrolls the item included in Shell preferentially as a default.
Thus, if you want to scroll the other object within the item of ShellSection using the bezel, you should set the object explicitly or set disable default behavior using BezelInteractionPage instead of ContentPage like below.
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.
The text was updated successfully, but these errors were encountered: