another_stepper 1.0.2 copy "another_stepper: ^1.0.2" to clipboard
another_stepper: ^1.0.2 copied to clipboard

outdated

A flutter package to create easily customizable Horizontal and Vertical stepper.

example/lib/main.dart

import 'package:another_stepper/another_stepper.dart';
import 'package:another_stepper/dto/stepper_data.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  List<StepperData> stepperData = [
    StepperData(
      title: "Order Placed",
      subtitle: "Your order has beed placed",
    ),
    StepperData(
      title: "Preparing",
      subtitle: "Your order is being prepared",
    ),
    StepperData(
      title: "On the way",
      subtitle: "Our delivery executive is on the way to deliver your item",
    ),
    StepperData(
      title: "Delivered",
      subtitle: "Your order was delivered successfully",
    ),
  ];

  List<StepperData> stepperData1 = [
    StepperData(
      title: "USA",
      subtitle: "Hello",
    ),
    StepperData(
      title: "Spain",
      subtitle: "Hola",
    ),
    StepperData(
      title: "Turkey",
      subtitle: "Merhaba",
    ),
  ];

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: SingleChildScrollView(
          child: Column(
            children: [
              const SizedBox(height: 20),
              AnotherStepper(
                stepperList: stepperData1,
                stepperDirection: Axis.horizontal,
                horizontalStepperHeight: 70,
              ),
              const SizedBox(height: 20),
              Padding(
                padding: const EdgeInsets.only(left: 20),
                child: AnotherStepper(
                  stepperList: stepperData1,
                  stepperDirection: Axis.vertical,
                  horizontalStepperHeight: 70,
                ),
              ),
              const SizedBox(height: 20),
              AnotherStepper(
                stepperList: stepperData1,
                stepperDirection: Axis.horizontal,
                horizontalStepperHeight: 70,
                inverted: true,
              ),
              const SizedBox(height: 20),
              Padding(
                padding: const EdgeInsets.only(right: 20),
                child: AnotherStepper(
                  stepperList: stepperData1,
                  stepperDirection: Axis.vertical,
                  horizontalStepperHeight: 70,
                  inverted: true,
                ),
              ),
              const SizedBox(height: 20),
              Padding(
                padding: const EdgeInsets.only(left: 20),
                child: AnotherStepper(
                  stepperList: stepperData1,
                  stepperDirection: Axis.vertical,
                  horizontalStepperHeight: 70,
                  inverted: false,
                  activeIndex: 1,
                  gap: 60,
                ),
              ),
              const SizedBox(height: 20),
              AnotherStepper(
                stepperList: stepperData1,
                stepperDirection: Axis.horizontal,
                horizontalStepperHeight: 120,
                inverted: false,
                activeIndex: 2,
                gap: 60,
              ),
              const SizedBox(height: 20),
              Padding(
                padding: const EdgeInsets.only(left: 20),
                child: AnotherStepper(
                  stepperList: stepperData,
                  stepperDirection: Axis.vertical,
                  horizontalStepperHeight: 70,
                  inverted: false,
                  activeIndex: 2,
                  barThickness: 8,
                ),
              ),
              const SizedBox(height: 20),
              Padding(
                padding: const EdgeInsets.only(left: 20),
                child: AnotherStepper(
                  stepperList: stepperData,
                  stepperDirection: Axis.vertical,
                  horizontalStepperHeight: 70,
                  dotWidget: Container(
                    padding: const EdgeInsets.all(8),
                    decoration: const BoxDecoration(
                        color: Colors.red,
                        borderRadius: BorderRadius.all(Radius.circular(30))
                    ),
                    child: const Icon(Icons.navigate_next_sharp, color: Colors.white),
                  ),
                  activeBarColor: Colors.red,
                  inActiveBarColor: Colors.grey,
                  activeIndex: 1,
                ),
              ),
              Padding(
                padding: const EdgeInsets.only(left: 20),
                child: AnotherStepper(
                  stepperList: stepperData,
                  stepperDirection: Axis.vertical,
                  horizontalStepperHeight: 70,
                  dotWidget: Container(
                    padding: const EdgeInsets.all(8),
                    decoration: const BoxDecoration(
                        color: Colors.green,
                        borderRadius: BorderRadius.all(Radius.circular(30))),
                    child: const Icon(Icons.fastfood, color: Colors.white),
                  ),
                  activeBarColor: Colors.green,
                  inActiveBarColor: Colors.grey,
                  activeIndex: 2,
                  barThickness: 8,
                ),
              ),
              const SizedBox(height: 20),
            ],
          ),
        ),
      ),
    );
  }
}
83
likes
0
pub points
97%
popularity

Publisher

unverified uploader

A flutter package to create easily customizable Horizontal and Vertical stepper.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on another_stepper