|
1 | | -## 0.8.0-beta.6 (2023-08-22) |
2 | | - |
3 | | -- adds parameter to `onTap` ([#41](https://github.com/splashbyte/animated_toggle_switch/issues/41)) |
4 | | - |
5 | | -## 0.8.0-beta.5 (2023-08-18) |
6 | | - |
7 | | -- fixes `AnimationType.onHover` |
8 | | - |
9 | | -## 0.8.0-beta.4 (2023-08-18) |
10 | | - |
11 | | -- BREAKING: removes `IconTheme` for controlling default size of `Icon`s |
12 | | -- BREAKING: changes default background color from `ThemeData.scaffoldBackgroundColor` to `ThemeData.colorScheme.surface` |
13 | | -- BREAKING: renames `dif` to `spacing` in all constructors |
14 | | - |
15 | | -## 0.8.0-beta.3 (2023-08-11) |
16 | | - |
17 | | -- BREAKING: replaces `transitionType` with `indicatorTransition` in `AnimatedToggleSwitch.rolling()`, |
18 | | - `AnimatedToggleSwitch.rollingByHeight()` and `AnimatedToggleSwitch.dual()` |
19 | | -- BREAKING: replaces `iconSize` and `selectedIconSize` in `AnimatedToggleSwitch` constructors |
20 | | - - `rolling()`, `rollingByHeight()`, `dual()`: now uses IconTheme for controlling default size of `Icon`s |
21 | | - - `size()`, `sizeByHeight()`: new parameter `selectedIconScale` controls scaling |
22 | | - |
23 | | -## 0.8.0-beta.2 (2023-08-01) |
24 | | - |
25 | | -- minor fixes |
26 | | -- updates README |
27 | | - |
28 | | -## 0.8.0-beta.1 (2023-07-31) |
29 | | - |
30 | | -- adds `active` to all constructors |
31 | | -- closes [#30](https://github.com/splashbyte/animated_toggle_switch/issues/30) |
32 | | -- minor improvements |
33 | | -- BREAKING: changes `separatorBuilder` parameters |
34 | | -- BREAKING: moves all cursor parameters to `cursors` |
35 | | - |
36 | | -## 0.8.0-beta.0 (2023-07-29) |
37 | | - |
| 1 | +## 0.8.0 (2023-09-02) |
38 | 2 | - adds tests for all `AnimatedToggleSwitch` constructors |
39 | 3 | - adds `separatorBuilder`, `customSeparatorBuilder`, `style` and `styleAnimationType` to `AnimatedToggleSwitch` |
40 | 4 | - adds `separatorBuilder` to `CustomAnimatedToggleSwitch` |
41 | | -- fixes initial loading |
| 5 | +- adds `active` to all constructors ([#30](https://github.com/splashbyte/animated_toggle_switch/issues/30)) |
| 6 | +- adds `styleBuilder` and `styleList` to `AnimatedToggleSwitch` |
| 7 | +- adds `iconList` to `AnimatedToggleSwitch.size`, `AnimatedToggleSwitch.sizeByHeight`, `AnimatedToggleSwitch.rolling` and `AnimatedToggleSwitch.rollingByHeight` |
42 | 8 | - BREAKING: moves many parameters in `AnimatedToggleSwitch` to `style`: |
43 | | - - `innerColor` (renamed to `backgroundColor`) |
44 | | - - `innerGradient` (renamed to `backgroundGradient`) |
45 | | - - `borderColor` |
46 | | - - `indicatorColor` |
47 | | - - `borderRadius` |
48 | | - - `indicatorBorderColor` |
49 | | - - `indicatorBorder` |
50 | | - - `indicatorBorder` |
51 | | - - `foregroundBoxShadow` (renamed to `indicatorBoxShadow`) |
52 | | - - `boxShadow` |
53 | | -- BREAKING: merges `borderColorBuilder` with `styleBuilder` |
| 9 | + - `innerColor` (renamed to `backgroundColor`) |
| 10 | + - `innerGradient` (renamed to `backgroundGradient`) |
| 11 | + - `borderColor` |
| 12 | + - `indicatorColor` |
| 13 | + - `borderRadius` |
| 14 | + - `indicatorBorderColor` |
| 15 | + - `indicatorBorder` |
| 16 | + - `indicatorBorder` |
| 17 | + - `foregroundBoxShadow` (renamed to `indicatorBoxShadow`) |
| 18 | + - `boxShadow` |
| 19 | +- BREAKING: moves all cursor parameters to `cursors` |
| 20 | +- BREAKING: removes `borderColorBuilder` in favor of the new `styleBuilder` |
54 | 21 | - BREAKING: `indicatorAnimationType` handles `ToggleStyle.indicatorColor`, `ToggleStyle.indicatorBorderRadius`, `ToggleStyle.indicatorBorder` and `ToggleStyle.indicatorBoxShadow` now |
| 22 | +- BREAKING: adds parameter to `onTap` ([#41](https://github.com/splashbyte/animated_toggle_switch/issues/41)) |
| 23 | +- BREAKING: changes default background color from `ThemeData.scaffoldBackgroundColor` to `ThemeData.colorScheme.surface` |
| 24 | +- BREAKING: renames `dif` to `spacing` in all constructors |
| 25 | +- BREAKING: replaces `transitionType` with `indicatorTransition` in `AnimatedToggleSwitch.rolling()`, |
| 26 | + `AnimatedToggleSwitch.rollingByHeight()` and `AnimatedToggleSwitch.dual()` |
| 27 | +- BREAKING: removes `iconSize` and `selectedIconSize` in `AnimatedToggleSwitch` constructors |
| 28 | + - `rolling()`, `rollingByHeight()`, `dual()`: new parameter `selectedIconScale` controls scaling now |
| 29 | + - `size()`, `sizeByHeight()`: new parameter `indicatorIconScale` controls scaling now |
55 | 30 |
|
56 | 31 | ## 0.7.0 (2023-06-19) |
57 | 32 |
|
|
69 | 44 | ## 0.6.0 (2022-12-22) |
70 | 45 |
|
71 | 46 | - fixes README |
72 | | -- fixes #28 |
73 | | -- BREAKING: Increases minimum SDK to 2.17 |
74 | | -- BREAKING: Renames `value` to `current` and `previousValue` to `previous` in `DetailedGlobalToggleProperties` |
75 | | -- BREAKING Feature: Adds loading animation to all switches. You can disable it by setting `loading` to false. |
76 | | -- Adds `innerGradient` to `AnimatedToggleSwitch` |
77 | | -- Adds `transitionType` to `AnimatedToggleSwitch.rolling`, `AnimatedToggleSwitch.rollingByHeight` and `AnimatedToggleSwitch.dual` |
| 47 | +- fixes ([#28](https://github.com/splashbyte/animated_toggle_switch/issues/28)) |
| 48 | +- BREAKING: increases minimum SDK to 2.17 |
| 49 | +- BREAKING: renames `value` to `current` and `previousValue` to `previous` in `DetailedGlobalToggleProperties` |
| 50 | +- BREAKING feature: Adds loading animation to all switches. You can disable it by setting `loading` to false. |
| 51 | +- adds `innerGradient` to `AnimatedToggleSwitch` |
| 52 | +- adds `transitionType` to `AnimatedToggleSwitch.rolling`, `AnimatedToggleSwitch.rollingByHeight` and `AnimatedToggleSwitch.dual` |
78 | 53 |
|
79 | 54 | ## 0.5.2 (2022-04-22) |
80 | 55 |
|
81 | | -- Minor performance improvement |
82 | | -- Minor fixes |
83 | | -- Improves code documentation |
84 | | -- Adds `dragCursor` and `draggingCursor` to `CustomAnimatedToggleSwitch` |
85 | | -- Adds `iconsTappable`, `defaultCursor`, `dragCursor` and `draggingCursor` to `AnimatedToggleSwitch` |
| 56 | +- minor performance improvement |
| 57 | +- minor fixes |
| 58 | +- improves code documentation |
| 59 | +- adds `dragCursor` and `draggingCursor` to `CustomAnimatedToggleSwitch` |
| 60 | +- adds `iconsTappable`, `defaultCursor`, `dragCursor` and `draggingCursor` to `AnimatedToggleSwitch` |
86 | 61 |
|
87 | 62 | ## 0.5.1 (2022-04-21) |
88 | 63 |
|
89 | | -- Fixes #20 |
| 64 | +- fixes ([#20](https://github.com/splashbyte/animated_toggle_switch/issues/20)) |
90 | 65 |
|
91 | 66 | ## 0.5.0 (2022-04-20) |
92 | 67 |
|
93 | | -- Minor performance improvement |
94 | | -- Fixes problems with tight constraints |
95 | | -- BREAKING: Changes default values of `animationOffset` and `clipAnimation` in `AnimatedToggleSwitch.dual` |
| 68 | +- minor performance improvement |
| 69 | +- fixes problems with tight constraints |
| 70 | +- BREAKING: changes default values of `animationOffset` and `clipAnimation` in `AnimatedToggleSwitch.dual` |
96 | 71 |
|
97 | 72 | ## 0.4.0 (2022-04-03) |
98 | 73 |
|
99 | | -- Minor fixes and performance improvements |
100 | | -- Adds `indicatorBorderRadius` to `AnimatedToggleSwitch` |
101 | | -- Adds `animationOffset`, `clipAnimation` and `opacityAnimation` to `AnimatedToggleSwitch.dual` |
102 | | -- BREAKING: Sets default values of `animationOffset`, `clipAnimation` and `opacityAnimation` in `AnimatedToggleSwitch.dual` |
103 | | -- BREAKING: Renames `foregroundBorder` to `indicatorBorder` |
| 74 | +- minor fixes and performance improvements |
| 75 | +- adds `indicatorBorderRadius` to `AnimatedToggleSwitch` |
| 76 | +- adds `animationOffset`, `clipAnimation` and `opacityAnimation` to `AnimatedToggleSwitch.dual` |
| 77 | +- BREAKING: sets default values of `animationOffset`, `clipAnimation` and `opacityAnimation` in `AnimatedToggleSwitch.dual` |
| 78 | +- BREAKING: renames `foregroundBorder` to `indicatorBorder` |
104 | 79 |
|
105 | 80 | ## 0.3.1 (2022-03-23) |
106 | 81 |
|
107 | | -- Minor fixes |
| 82 | +- minor fixes |
108 | 83 |
|
109 | 84 | ## 0.3.0 (2022-03-21) |
110 | 85 |
|
111 | | -- Introduces `CustomAnimatedToggleSwitch` for maximum customizability |
112 | | -- Most constructors of `AnimatedToggleSwitch` have a standard and a more customizable parameter for their builders now |
113 | | -- Full support of `TextDirection.rtl` |
114 | | -- Adds animation when dragging the switch |
115 | | -- Adds `minTouchTargetSize`, `dragStartDuration`, `dragStartCurve` and `textDirection` to `AnimatedToggleSwitch` |
| 86 | +- introduces `CustomAnimatedToggleSwitch` for maximum customizability |
| 87 | +- most constructors of `AnimatedToggleSwitch` have a standard and a more customizable parameter for their builders now |
| 88 | +- full support of `TextDirection.rtl` |
| 89 | +- adds animation when dragging the switch |
| 90 | +- adds `minTouchTargetSize`, `dragStartDuration`, `dragStartCurve` and `textDirection` to `AnimatedToggleSwitch` |
116 | 91 | - BREAKING: `TextDirection` is taken from `BuildContext` by default now!!! |
117 | | -- BREAKING: Changes parameters and names of some builders |
118 | | -- BREAKING: Renames `AnimatedToggleSwitch.byHeight` to `AnimatedToggleSwitch.customByHeight` |
119 | | -- BREAKING: Adds default `textMargin` to `AnimatedToggleSwitch.dual` |
120 | | -- Fixes #9 |
| 92 | +- BREAKING: changes parameters and names of some builders |
| 93 | +- BREAKING: renames `AnimatedToggleSwitch.byHeight` to `AnimatedToggleSwitch.customByHeight` |
| 94 | +- BREAKING: adds default `textMargin` to `AnimatedToggleSwitch.dual` |
| 95 | +- fixes ([#9](https://github.com/splashbyte/animated_toggle_switch/issues/9)) |
121 | 96 |
|
122 | 97 | ## 0.2.3 (2022-02-28) |
123 | 98 |
|
124 | | -- BREAKING: Removes `indicatorType` |
125 | | -- BREAKING: Changes default `innerColor` |
126 | | -- Adds `BoxShadow` parameters |
| 99 | +- BREAKING: removes `indicatorType` |
| 100 | +- BREAKING: changes default `innerColor` |
| 101 | +- adds `BoxShadow` parameters |
127 | 102 |
|
128 | 103 | ## 0.2.2 (2022-01-27) |
129 | 104 |
|
130 | | -- Minor performance improvements |
| 105 | +- minor performance improvements |
131 | 106 |
|
132 | 107 | ## 0.2.2 (2022-01-27) |
133 | 108 |
|
134 | | -- Minor changes/fixes |
| 109 | +- minor changes/fixes |
135 | 110 |
|
136 | 111 | ## 0.2.1 (2021-10-03) |
137 | 112 |
|
138 | | -- Migrates to Flutter 2.5 |
139 | | -- Minor changes/fixes |
| 113 | +- migrates to Flutter 2.5 |
| 114 | +- minor changes/fixes |
140 | 115 |
|
141 | 116 | ## 0.2.0 (2021-05-21) |
142 | 117 |
|
143 | | -- Minor Changes |
144 | | -- Fixes `FittingMode.preventHorizontalOverlapping` |
145 | | -- Improves Web support |
| 118 | +- minor Changes |
| 119 | +- fixes `FittingMode.preventHorizontalOverlapping` |
| 120 | +- improves Web support |
146 | 121 |
|
147 | 122 | ## 0.1.3 (2021-03-27) |
148 | 123 |
|
149 | | -- Updates README.md |
| 124 | +- updates README.md |
150 | 125 |
|
151 | 126 | ## 0.1.2 (2021-03-27) |
152 | 127 |
|
153 | | -- Adds `AnimatedToggleSwitch.dual` |
154 | | -- Adds some settings (`AnimationType`) |
| 128 | +- adds `AnimatedToggleSwitch.dual` |
| 129 | +- adds some settings (`AnimationType`) |
155 | 130 |
|
156 | 131 | ## 0.1.1 (2021-03-26) |
157 | 132 |
|
158 | | -- Minor fix |
| 133 | +- minor fix |
159 | 134 |
|
160 | 135 | ## 0.1.0 (2021-03-26) |
161 | 136 |
|
162 | | -- Initial release |
| 137 | +- initial release |
0 commit comments