-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstepper.dart
71 lines (65 loc) · 1.89 KB
/
stepper.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import 'package:flutter/material.dart';
class StepperExample extends StatefulWidget {
const StepperExample({super.key});
@override
State<StepperExample> createState() => _StepperExampleState();
}
class _StepperExampleState extends State<StepperExample> {
/// The current step whose content is displayed.
int currentStep = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Stepper Example'),
),
body: Stepper(
/// The current step whose content is displayed.
currentStep: currentStep,
/// Steps to display. A step can be disabled by setting
/// [Step.isActive] to false.
steps: const [
Step(
title: Text('Details'),
content: Text('Content for Step 1'),
isActive: true,
),
Step(
title: Text('Address'),
content: Text('Content for Step 2'),
isActive: true,
),
Step(
title: Text('Checkout'),
content: Text('Content for Step 3'),
isActive: true,
),
],
/// Continue action
onStepContinue: () {
// Update the state i.e. increment the currentStep variable
// when the user taps on the continue button.
setState(() {
if (currentStep < 2) {
currentStep = currentStep + 1;
} else {
currentStep = 0;
}
});
},
// Cancel action
onStepCancel: () {
// Update the state i.e. decrement the currentStep variable
// when the user taps on the cancel button.
setState(() {
if (currentStep > 0) {
currentStep = currentStep - 1;
} else {
currentStep = 0;
}
});
},
),
);
}
}