DevGesture constructor
const
DevGesture({
- Key? key,
- required Widget child,
- required DevGestureCallback onTriggered,
- int tapCount = 5,
- Duration timeout = const Duration(seconds: 3),
- List<
DevTriggerZone> triggerZones = const [DevTriggerZone.bottomRight], - Size tapAreaSize = const Size(60, 60),
- bool showDebugBadge = true,
Implementation
const DevGesture({
super.key,
required this.child,
required this.onTriggered,
this.tapCount = 5,
this.timeout = const Duration(seconds: 3),
this.triggerZones = const [DevTriggerZone.bottomRight],
this.tapAreaSize = const Size(60, 60),
this.showDebugBadge = true,
});