GuideTooltip constructor

const GuideTooltip({
  1. Key? key,
  2. required GuideStep step,
  3. required Offset targetPosition,
  4. required Size targetSize,
  5. required GuideController controller,
})

Creates an onboarding tooltip.

step - The current step data to display. targetPosition - Screen position of the target widget. targetSize - Size of the target widget. controller - Controller for handling navigation.

Implementation

const GuideTooltip({
  super.key,
  required this.step,
  required this.targetPosition,
  required this.targetSize,
  required this.controller,
});