You can edit 8 Components for free. Get premium for unlimited access.
Displays a coach mark or a component that looks like an coach mark.
The Coach Mark component is used to create in-app tutorials or guided user experiences. It highlights key areas of the interface with directional indicators and accompanying text descriptions.
This component inherits props from the Check Mark.
You can edit the direction with the bottom, top, left or right parameter.

Image 2.1 : Direction bottom

Image 2.2 : Direction mark top

Image 2.3 : Direction left

Image 2.4 : Direction mark right
The CoachMark component is a customizable SwiftUI view used to create in-app tutorials or guided user experiences. It highlights key areas of the interface with directional indicators and accompanying text descriptions.
This component inherits props from the Coach Mark.
-
You can edit the direction with the CoachMarkDirection.top, CoachMarkDirection.left, CoachMarkDirection.right or CoachMarkDirection.bottom parameter.
Preview
Code
DlCoachMark(
direction: DlCoachMarkDirection.bottom,
steps: const [
DlCoachMarkStep(
title: 'Try this feature',
description: 'Use this coach mark to guide users through actions.',
),
DlCoachMarkStep(
title: 'Go to next step',
description: 'Tap next to continue the coach flow.',
),
DlCoachMarkStep(
title: 'Done',
description: 'You can close onboarding after this step.',
),
],
leftButtonLabel: 'Back',
rightButtonLabel: 'Next',
onPaginationChanged: (index) {
// track step index
},
),
],
)Add this code example to your project to see how the component works.
DlCoachMark(
direction: DlCoachMarkDirection.bottom,
steps: const [
DlCoachMarkStep(
title: 'Try this feature',
description: 'Use this coach mark to guide users through actions.',
),
DlCoachMarkStep(
title: 'Go to next step',
description: 'Tap next to continue the coach flow.',
),
DlCoachMarkStep(
title: 'Done',
description: 'You can close onboarding after this step.',
),
],
leftButtonLabel: 'Back',
rightButtonLabel: 'Next',
onPaginationChanged: (index) {
// track step index
},
),
],
)DlCoachMark is a guided overlay component with step-based title/description content, direction-aware tooltip arrow, built-in pagination and Back/Next controls that update steps.
You have questions or need help?
You want to try?
Save time and money?