You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file.
3
+
4
+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+
## [Unreleased]
8
+
### Added
9
+
-`setEndButtonVisible` and `setBackButtonVisible` methods in `StepViewModel.Builder` for toggling button visibility (issue #104)
10
+
- New stepper type `none` which shows no progress indicator for the steps (issue #154)
11
+
12
+
### Changed
13
+
- Updated Android Support Library version to `25.4.0` to support vector animations without a pre-Lollipop fallback (issue #154)
14
+
- Changed `setNextButtonLabel` methods in `StepViewModel.Builder` to `setEndButtonLabel` so that it works for both Next and Complete buttons (issue #107)
@@ -295,6 +296,10 @@ In such case you need to override the `getViewModel(int)` method from the `StepA
295
296
}
296
297
```
297
298
299
+
It is also possible to hide Back/Next/Complete buttons on each step if needed.
300
+
To do so you need to call `setBackButtonVisible(false)` and/or `setEndButtonVisible(false)` on
301
+
`StepViewModel.Builder` in your adapter.
302
+
298
303
### Custom styling
299
304
Basic styling can be done by choosing the active and inactive step colors.
300
305
There are some additional properties which can be changed directly from StepperLayout's attributes e.g. the background of bottom navigation buttons (see [StepperLayout attributes](#stepperlayout-attributes))
@@ -500,7 +505,10 @@ A list of `ms_stepperLayoutTheme` attributes responsible for styling of StepperL
500
505
|*ms_stepTabIconBackgroundStyle*|Used by ms_stepIconBackground in layout/ms_step_tab |
501
506
|*ms_stepTabTitleStyle*|Used by ms_stepTitle in layout/ms_step_tab |
502
507
|*ms_stepTabDividerStyle*|Used by ms_stepDivider in layout/ms_step_tab |
0 commit comments