diff --git a/using_stepper/README.md b/using_stepper/README.md
index 5acba847..fcbc3f4b 100644
--- a/using_stepper/README.md
+++ b/using_stepper/README.md
@@ -4,7 +4,8 @@ A material stepper widget that displays progress through a sequence of steps. St
Read [[Documentation](https://docs.flutter.io/flutter/material/Stepper-class.html)] [[Material Design Spec](https://material.io/guidelines/components/steppers.html)]
-
+
+
## Getting Started
diff --git a/using_stepper/demo_img_2.gif b/using_stepper/demo_img_2.gif
new file mode 100644
index 00000000..83891966
Binary files /dev/null and b/using_stepper/demo_img_2.gif differ
diff --git a/using_stepper/lib/main.dart b/using_stepper/lib/main.dart
index dff67a04..91e07935 100644
--- a/using_stepper/lib/main.dart
+++ b/using_stepper/lib/main.dart
@@ -51,6 +51,8 @@ class MyHomeState extends State {
// List the steps you would like to have
steps: my_steps,
// Define the type of Stepper style
+ // StepperType.horizontal : Horizontal Style
+ // StepperType.vertical : Vertical Style
type: StepperType.vertical,
// Know the step that is tapped
onStepTapped: (step) {