Use the `dataContent` property to add a symbol inside the step's circle.
Preview
- Step 1
- Step 2
- Step 3
- Step 4
- Step 5
- Step 6
- Step 7
Dart
Steps(
[
Step([text('Step 1')], dataContent: '?', style: [Step.neutral]),
Step([text('Step 2')], dataContent: '!', style: [Step.neutral]),
Step([text('Step 3')], dataContent: '✓', style: [Step.neutral]),
Step([text('Step 4')], dataContent: '✕', style: [Step.neutral]),
Step([text('Step 5')], dataContent: '★', style: [Step.neutral]),
Step([text('Step 6')], dataContent: '', style: [Step.neutral]),
Step([text('Step 7')], dataContent: '●', style: [Step.neutral]),
],
)