我来自网络开发领域,我想了解如何在flutter中实现"指针事件:none"。在web中,此属性使元素处于非活动状态,并且不会对鼠标和传感器的触摸做出反应。
将小部件包装在IgnorePointer
小部件中:
IgnorePointer(
ignoring: true,
child: RaisedButton(
onPressed: () {
print('pressed');
},
child: Text('Press me'),
),
);