steps_indicator 0.3.0
steps_indicator: ^0.3.0 copied to clipboard
Flutter plugin to display a simple steps indicator line widget.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:steps_indicator/steps_indicator.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Steps Indicator Example',
theme: ThemeData(
primarySwatch: Colors.blue,
),
home: MyHomePage(title: 'Steps Indicator Example'),
);
}
}
class MyHomePage extends StatefulWidget {
MyHomePage({Key key, this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int selectedStep = 0;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text(widget.title),
),
body: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
StepsIndicator(
selectedStep: selectedStep,
nbSteps: 5,
doneLineColor: Colors.green,
doneStepColor: Colors.green,
undoneLineColor: Colors.red,
unselectedStepColor: Colors.red,
doneStepWidget: Container(height: 24, color: Colors.purple, child: Icon(Icons.check, color: Colors.white,),),
),
Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
MaterialButton(
color: Colors.red,
onPressed: () {
setState(() {
selectedStep--;
});
},
child: Text('Prev'),
),
MaterialButton(
color: Colors.green,
onPressed: () {
setState(() {
selectedStep++;
});
},
child: Text('Next'),
)
],
)
],
)
),
);
}
}