Simulator Swipe Left and Right

Hi,

Sorry if this has been covered, or documented somewhere, but I've looked everywhere!

How do I get the Simulator to trigger Swipe Left and Right for the Vivoactive? I've tried dragging, clicking on the edges, but to no luck.

While I am asking, is there a crib-sheet for creating all of the input events, so I can test they work correctly?

Thanks
Chris
  • The top-level input delegate won't receive many user input events. If you push a view (using Ui.pushView(...)), the second-level input delegate will get input events. Your top-level delegate can use the enter or menu button press, or a screen tap to push the second view (there are other ways, but these is the most obvious to users).

    This is by design. If your widget's top-level input delegate was given the input events, then the user would have no way to swipe to the next widget.

    Travis