您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
38 行
1.4 KiB
38 行
1.4 KiB
using Unity.UIWidgets.material;
|
|
using Unity.UIWidgets.widgets;
|
|
using UnityEngine;
|
|
|
|
namespace UIWidgetsSample {
|
|
public class LongPressSample : UIWidgetsSamplePanel {
|
|
protected override Widget createWidget() {
|
|
return new WidgetsApp(
|
|
home: new LongPressSampleWidget(),
|
|
pageRouteBuilder: this.pageRouteBuilder);
|
|
}
|
|
}
|
|
|
|
public class LongPressSampleWidget : StatefulWidget {
|
|
public override State createState() {
|
|
return new _LongPressSampleWidgetState();
|
|
}
|
|
}
|
|
|
|
class _LongPressSampleWidgetState : State<LongPressSampleWidget> {
|
|
public override Widget build(BuildContext context) {
|
|
return new GestureDetector(
|
|
onLongPressDragStart: (value) => { Debug.Log($"Long Press Drag Start: {value}"); },
|
|
onLongPressDragUpdate: (value) => { Debug.Log($"Long Press Drag Update: {value}"); },
|
|
onLongPressDragUp: (value) => { Debug.Log($"Long Press Drag Up: {value}"); },
|
|
onLongPressUp: () => { Debug.Log($"Long Press Up"); },
|
|
onLongPress: () => { Debug.Log($"Long Press"); },
|
|
child: new Center(
|
|
child: new Container(
|
|
width: 200,
|
|
height: 200,
|
|
color: Colors.blue
|
|
)
|
|
)
|
|
);
|
|
}
|
|
}
|
|
}
|