TextFieldTapRegion constructor

const TextFieldTapRegion(
  1. {Key? key,
  2. required Widget? child,
  3. bool enabled = true,
  4. TapRegionCallback? onTapOutside,
  5. TapRegionCallback? onTapInside,
  6. bool consumeOutsideTaps = false,
  7. String? debugLabel}
)

Creates a const TextFieldTapRegion.

The child field is required.

Implementation

const TextFieldTapRegion({
  super.key,
  required super.child,
  super.enabled,
  super.onTapOutside,
  super.onTapInside,
  super.consumeOutsideTaps,
  super.debugLabel,
}) : super(groupId: EditableText);