• Just bumping this for bangle 2. I have some code using Bangle.on('swipe') to scroll left/right through objects in an array and want to replicate it with up/down. I've tried reading other app code and looking at the documentation but can't quite work it out. Should I use Bangle.on('drag') , Bangle.setUI('updown') or is there something else I've missed?

  • This works on my Bangle 2:

    Bangle.on("swipe",function(direction){
      if (0==direction) console.log("Up or down swipe detected");
    });
    
About

Avatar for HilmarSt @HilmarSt started