Hi,
I'm developing a Widget and I would like to have the main page to show a scrollable list. The best way I could find is to create a CustomMenu with CustomMenuItems. However, the simulator throws an exception that the main view has an unexpected type. I assume it has to be a WatchUi.View object and cannot be a CustomMenu object. I can understand this limitation for the case when widget glances are disabled because in this case, the UP/DOWN buttons bring to the previous/next widget, instead of navigating inside the CustomMenu.
I would like to have similar behavior to the built-in Notifications widget. If widget glances are disabled, then the main view of the widget shows a preview of the notification list, and the user has to press START to get the scrollable list of notification items. However, if widget glances are enabled, the user is immediately brought to the view with a scrollable list of notification items. Could you help me on how to implement a similar widget? Thank you in advance!