IgnorePointer constructor
- Key? key,
- bool ignoring = true,
- @Deprecated('Use ExcludeSemantics or create a custom ignore pointer widget instead. ' 'This feature was deprecated after v3.8.0-12.0.pre.') bool? ignoringSemantics,
- Widget? child,
Creates a widget that is invisible to hit testing.
Implementation
const IgnorePointer({
super.key,
this.ignoring = true,
@Deprecated(
'Use ExcludeSemantics or create a custom ignore pointer widget instead. '
'This feature was deprecated after v3.8.0-12.0.pre.'
)
this.ignoringSemantics,
super.child,
});