steps_indicator 1.3.0 steps_indicator: ^1.3.0 copied to clipboard
Flutter plugin to display a simple steps indicator line widget.
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: const MyHomePage(title: 'Steps Indicator Example'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({Key? key, required this.title}) : super(key: key);
final String title;
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
int selectedStep = 0;
int nbSteps = 5;
@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: nbSteps,
doneLineColor: Colors.green,
doneStepColor: Colors.green,
undoneLineColor: Colors.red,
lineLength: 10,
lineLengthCustomStep: [
StepsIndicatorCustomLine(nbStep: 4, length: 105)
],
enableLineAnimation: true,
enableStepAnimation: true,
),
Row(
crossAxisAlignment: CrossAxisAlignment.center,
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
MaterialButton(
color: Colors.red,
onPressed: () {
if(selectedStep > 0) {
setState(() {
selectedStep--;
});
}
},
child: const Text('Prev'),
),
MaterialButton(
color: Colors.green,
onPressed: () {
if(selectedStep < nbSteps) {
setState(() {
selectedStep++;
});
}
},
child: const Text('Next'),
)
],
)
],
)
),
);
}
}