-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstepper.dart
53 lines (47 loc) · 1.23 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
import 'package:flutter/material.dart';
void main(){
runApp(MaterialApp(
title: "Futter utilties",
debugShowCheckedModeBanner: false,
theme: ThemeData(
primarySwatch: Colors.teal,
brightness: Brightness.light,
accentColor: Colors.yellow,
),
home: HomePage(),
));
}
class HomePage extends StatefulWidget {
@override
_HomePageState createState() => _HomePageState();
}
class _HomePageState extends State<HomePage> {
int current_step =0;
List<Step> my_steps = [
Step(title: Text("Step 1"), content: Text("Some content 1"), isActive: true),
Step(title: Text("Step 2"), content: Text("Some content 2"), isActive: true),
Step(title: Text("Step 3"), content: Text("Some content 3"), isActive: true)
];
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text("Flutter_Util",
style: TextStyle(
color: Colors.white,
fontSize: 20.0,
fontWeight: FontWeight.w800,
),
),
centerTitle: true,
),
body: Container(
child: Stepper(
steps: my_steps,
currentStep: this.current_step,
type: StepperType.horizontal,
),
),
);
}
}