steps_indicator 0.1.0+1 copy "steps_indicator: ^0.1.0+1" to clipboard
steps_indicator: ^0.1.0+1 copied to clipboard

outdated

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> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
      ),
      body: Center(
        child: StepsIndicator(
          selectedStep: 2,
          nbSteps: 5,
        )
      ),
    );
  }
}
58
likes
0
pub points
91%
popularity

Publisher

verified publisherhugoextrat.com

Flutter plugin to display a simple steps indicator line widget.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on steps_indicator