Skip to content

Instantly share code, notes, and snippets.

@salmanyaqoob
Created January 28, 2021 08:39
Show Gist options
  • Select an option

  • Save salmanyaqoob/9afa67c9a4d0a20c13c824da78d11a8d to your computer and use it in GitHub Desktop.

Select an option

Save salmanyaqoob/9afa67c9a4d0a20c13c824da78d11a8d to your computer and use it in GitHub Desktop.
Array Screen JS
import app from '@system.app'
import utils from '../../common/utils.js';
export default {
data: {
arrayData: [
{id: 1, name: 'jack', age: 18},
{id: 2, name: 'tony', age: 18},
],
},
touchMove(e){ // Handle the swipe event.
if(e.direction == "right") // Swipe right to exit.
{
utils.backToHome();
}
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment