AbsorbPointer constructor
- Key? key,
- bool absorbing = true,
- @Deprecated('Use ExcludeSemantics or create a custom absorb pointer widget instead. ' 'This feature was deprecated after v3.8.0-12.0.pre.') bool? ignoringSemantics,
- Widget? child,
Creates a widget that absorbs pointers during hit testing.
Implementation
const AbsorbPointer({
super.key,
this.absorbing = true,
@Deprecated(
'Use ExcludeSemantics or create a custom absorb pointer widget instead. '
'This feature was deprecated after v3.8.0-12.0.pre.'
)
this.ignoringSemantics,
super.child,
});