stepflow 1.0.1  stepflow: ^1.0.1 copied to clipboard
stepflow: ^1.0.1 copied to clipboard
Dart package that provides a structural base for creating step-based, modular workflows inside of applications.
Use this package as a library
Depend on it
Run this command:
With Dart:
 $ dart pub add stepflowWith Flutter:
 $ flutter pub add stepflowThis will add a line like this to your package's pubspec.yaml (and run an implicit dart pub get):
dependencies:
  stepflow: ^1.0.1Alternatively, your editor might support dart pub get or flutter pub get. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:stepflow/cli.dart';
import 'package:stepflow/cli/command.dart';
import 'package:stepflow/cli/flag.dart';
import 'package:stepflow/cli/steps/check.dart';
import 'package:stepflow/cli/steps/install.dart';
import 'package:stepflow/cli/steps/shell.dart';
import 'package:stepflow/common.dart';
import 'package:stepflow/common/response.dart';
import 'package:stepflow/common/steps/atomics.dart';
import 'package:stepflow/common/steps/chain.dart';
import 'package:stepflow/common/steps/conditional.dart';
import 'package:stepflow/common/steps/runnable.dart';
import 'package:stepflow/common/steps/skipped.dart';
import 'package:stepflow/common/workflow.dart';