AtomicTooltip constructor
const
AtomicTooltip({
- Key? key,
- required Widget child,
- required String message,
- String? richMessage,
- InlineSpan? textSpan,
- EdgeInsetsGeometry? padding,
- EdgeInsetsGeometry? margin,
- double? verticalOffset,
- bool preferBelow = true,
- bool excludeFromSemantics = false,
- Decoration? decoration,
- TextStyle? textStyle,
- TextAlign? textAlign,
- Duration? waitDuration,
- Duration? showDuration,
- TooltipTriggerMode? triggerMode,
- bool? enableTapToDismiss,
- bool? enableFeedback,
- AtomicTooltipVariant variant = AtomicTooltipVariant.standard,
Implementation
const AtomicTooltip({
super.key,
required this.child,
required this.message,
this.richMessage,
this.textSpan,
this.padding,
this.margin,
this.verticalOffset,
this.preferBelow = true,
this.excludeFromSemantics = false,
this.decoration,
this.textStyle,
this.textAlign,
this.waitDuration,
this.showDuration,
this.triggerMode,
this.enableTapToDismiss,
this.enableFeedback,
this.variant = AtomicTooltipVariant.standard,
});