Skip to content

Commit 081981e

Browse files
committed
added another demo_gif for horizontal mode in using_stepper example
1 parent 1b655ac commit 081981e

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

using_stepper/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ A material stepper widget that displays progress through a sequence of steps. St
44

55
Read [[Documentation](https://docs.flutter.io/flutter/material/Stepper-class.html)] [[Material Design Spec](https://material.io/guidelines/components/steppers.html)]
66

7-
<img src="demo_img.gif" height="600em" />
7+
<img src="demo_img.gif" height="600em" /> <img src="demo_img_2.gif" height="600em" />
8+
89

910
## Getting Started
1011

using_stepper/demo_img_2.gif

326 KB
Loading

using_stepper/lib/main.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ class MyHomeState extends State<MyHome> {
5151
// List the steps you would like to have
5252
steps: my_steps,
5353
// Define the type of Stepper style
54+
// StepperType.horizontal : Horizontal Style
55+
// StepperType.vertical : Vertical Style
5456
type: StepperType.vertical,
5557
// Know the step that is tapped
5658
onStepTapped: (step) {

0 commit comments

Comments
 (0)