Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Iconica Standard Component Release Workflow
# Workflow Caller version: 1.0.0

on:
release:
types: [published]

workflow_dispatch:

jobs:
call-global-iconica-workflow:
uses: Iconica-Development/.github/.github/workflows/component-release.yml@master
secrets: inherit
permissions: write-all

2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ migrate_working_dir/

# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
pubspec.lock
**/doc/api/
.dart_tool/
.packages
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [2.3.0]

- Added lastBuilder to the StepIndicatorTheme to allow for custom last step indicator.
- Added useDashedLine to always use a dashed line for the stepper.
- Added activeLineColor to the StepIndicatorTheme to allow for custom active line color.
- Added hideStepWhenDone to the StepIndicatorTheme to scroll the stepper when the step is done.

## [2.2.0] - 4 March 2024

- Added optional `lineHeight` to the `StepperTheme` to allow for custom line height.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# stepper
# flutter_stepper

A Flutter package for creating a list of steps that are horizontally aligned. The steps can contain a widget and between each step a line is drawn.

Expand All @@ -16,11 +16,11 @@ See [Example Code](example/lib/main.dart) for more info.

## Issues

Please file any issues, bugs or feature request as an issue on our [GitHub](https://github.com/Iconica-Development/stepper) page. Commercial support is available if you need help with integration with your app or services. You can contact us at [support@iconica.nl](mailto:support@iconica.nl).
Please file any issues, bugs or feature request as an issue on our [GitHub](https://github.com/Iconica-Development/flutter_stepper) page. Commercial support is available if you need help with integration with your app or services. You can contact us at [support@iconica.nl](mailto:support@iconica.nl).

## Want to contribute

If you would like to contribute to the plugin (e.g. by improving the documentation, solving a bug or adding a cool new feature), please carefully review our [contribution guide](./CONTRIBUTING.md) and send us your [pull request](https://github.com/Iconica-Development/stepper/pulls).
If you would like to contribute to the plugin (e.g. by improving the documentation, solving a bug or adding a cool new feature), please carefully review our [contribution guide](./CONTRIBUTING.md) and send us your [pull request](https://github.com/Iconica-Development/flutter_stepper/pulls).

## Author

Expand Down
7 changes: 6 additions & 1 deletion example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ migrate_working_dir/
# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/
.vscode/

# Flutter/Dart/Pub related
**/doc/api/
Expand All @@ -45,3 +45,8 @@ app.*.map.json
/android/app/debug
/android/app/profile
/android/app/release

android
web
ios
linux
42 changes: 0 additions & 42 deletions example/.metadata

This file was deleted.

3 changes: 0 additions & 3 deletions example/README.md

This file was deleted.

1 change: 1 addition & 0 deletions example/README.md
13 changes: 0 additions & 13 deletions example/android/.gitignore

This file was deleted.

71 changes: 0 additions & 71 deletions example/android/app/build.gradle

This file was deleted.

8 changes: 0 additions & 8 deletions example/android/app/src/debug/AndroidManifest.xml

This file was deleted.

34 changes: 0 additions & 34 deletions example/android/app/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

This file was deleted.

12 changes: 0 additions & 12 deletions example/android/app/src/main/res/drawable/launch_background.xml

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
18 changes: 0 additions & 18 deletions example/android/app/src/main/res/values-night/styles.xml

This file was deleted.

18 changes: 0 additions & 18 deletions example/android/app/src/main/res/values/styles.xml

This file was deleted.

8 changes: 0 additions & 8 deletions example/android/app/src/profile/AndroidManifest.xml

This file was deleted.

31 changes: 0 additions & 31 deletions example/android/build.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions example/android/gradle.properties

This file was deleted.

6 changes: 0 additions & 6 deletions example/android/gradle/wrapper/gradle-wrapper.properties

This file was deleted.

11 changes: 0 additions & 11 deletions example/android/settings.gradle

This file was deleted.

Loading