stepo 1.0.0 copy "stepo: ^1.0.0" to clipboard
stepo: ^1.0.0 copied to clipboard

A Flutter package for animated unit stepper with customisable animation durations, colors and sizes.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:stepo/stepo.dart';

void main() => runApp(StepoApp());

class StepoApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: HomePage(),
    );
  }
}

class HomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Color(0xffEC645B),
      body: Center(
          child: Column(
        mainAxisSize: MainAxisSize.min,
        children: <Widget>[
          Stepo(
            key: UniqueKey(),
          ),
        ],
      )),
    );
  }
}
25
likes
40
pub points
8%
popularity

Publisher

unverified uploader

A Flutter package for animated unit stepper with customisable animation durations, colors and sizes.

Repository (GitHub)
View/report issues

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on stepo