I am from the world of web development and I want to understand how to implement in the flutter "pointer-events: none". In web this property makes the element not active and does not react to the touch of the mouse and the sensor.
Wrap your widgets in an IgnorePointer widget:
IgnorePointer(
  ignoring: true,
  child: RaisedButton(
    onPressed: () {
      print('pressed');
    },
    child: Text('Press me'),
  ),
);
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With