android development
app development
create stepper flutter
development
flutter
ios development
simple flutter stepper
stepper form flutter
Create a Simple Stepper with Flutter
Icons made by monkik, Pixelmeetup, and Freepik from www.flaticon.com
1. Start Visual Studio Code. Go to menu “View -> Command Palette” and select the “Flutter: New Project” option:2. As usual the "Counter App Example" will be created. In this occasion I will work here. Locate the body, and remove the content inside the Column's Children:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return Scaffold( | |
appBar: AppBar( | |
title: Text(widget.title), | |
), | |
body: Center( | |
child: Column( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: <Widget>[ | |
], | |
), | |
), | |
floatingActionButton: FloatingActionButton( | |
onPressed: _incrementCounter, | |
tooltip: 'Increment', | |
child: Icon(Icons.add), | |
), | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new Stepper( | |
type: StepperType.vertical, | |
steps: | |
[ | |
], | |
), |
5. Let's add our first step. Inside the steps: [] list, we will add a simple TextFormField, in which we will allow the user to add any text, set a step state, give it a title (required), and also allow the autocorrect feature:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step( | |
title: const Text('Receipt number:'), | |
isActive: true, | |
state: StepState.editing, | |
content: new TextFormField( | |
keyboardType: TextInputType.text, | |
autocorrect: true, | |
), |
7. Neat isn't it? However, the field is not explicit enough for the user. To solve that, let's add some input decoration, to show a placeholder, a field hint and also an icon to make it prettier:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
decoration: | |
new InputDecoration | |
( | |
labelText: 'Please enter a receipt number', | |
hintText: 'Example: WST-10102P', | |
icon: const Icon(Icons.receipt), | |
labelStyle: new TextStyle(decorationStyle: TextDecorationStyle.solid | |
), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step( | |
title: const Text('Receipt number:'), | |
isActive: true, | |
state: StepState.editing, | |
content: new TextFormField( | |
keyboardType: TextInputType.text, | |
autocorrect: true, | |
decoration: | |
new InputDecoration( | |
labelText: 'Please enter a receipt number', | |
hintText: 'Example: WST-10102P', | |
icon: const Icon(Icons.receipt), | |
labelStyle: new TextStyle(decorationStyle: TextDecorationStyle.solid), | |
), | |
), | |
), |
9. Let's create an Amount step, which will look exactly like the previous one, except for the title:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Step( | |
title: const Text('Amount:'), | |
isActive: true, | |
state: StepState.editing, | |
content: new TextFormField( | |
keyboardType: TextInputType.text, | |
autocorrect: true, | |
decoration: | |
new InputDecoration( | |
labelText: 'Please enter an amount', | |
hintText: 'Example: 102.22', | |
icon: const Icon(Icons.monetization_on), | |
labelStyle: new TextStyle(decorationStyle: TextDecorationStyle.solid), | |
), | |
), | |
), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class _MyHomePageState extends State<MyHomePage> { | |
int currStep = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
currentStep: this.currStep, | |
onStepContinue: () { | |
setState(() { | |
if (currStep < 2 - 1) { | |
currStep = currStep + 1; | |
} else { | |
currStep = 0; | |
} | |
}); | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
onStepCancel: () { | |
setState(() { | |
if (currStep > 0) { | |
currStep = currStep - 1; | |
} else { | |
currStep = 0; | |
} | |
}); | |
}, | |
onStepTapped: (step) { | |
setState(() { | |
currStep = step; | |
}); | |
}, |
14. Finally, add a button that will send the form information to the server:
16. As you noticed, this Stepper doesn't have any type of validation, and doesn't save the data entered. This is intentional since it would be hard just to cram everything up in one post, and instead I explained how to create one without any complicated functionality so that you can understand how to create a Stepper. Next article I will add validation, and how to send the information to the server.
Get the code here: Simple Stepper with Flutter
No comments
Post a Comment