如何用长按手势移动StackLayout?

时间:2019-05-20 17:26:18

标签: android animation vue.js drag-and-drop nativescript-vue

我想使用长按手势移动StackLayout。我的想法是通过更改对象的位置来移动StackLayout。我想要得到的结果是,长按标签后,我可以将其移动到StackLayout上的其他位置。

<StackLayout orientation="horizontal" class="items">
  <StackLayout orientation="horizontal" class="item" @longPress="itemPress()">
  </StackLayout> 
</StackLayout> 

脚本:

export default {
  data() {
    return {

    };
  },

 methods: {
   itemPress(){
     alert("longpress");
     //stuff...
   },
 }

0 个答案:

没有答案