Skip to content

Commit a6d6cec

Browse files
committed
Update version
1 parent 00d07aa commit a6d6cec

File tree

8 files changed

+13
-8
lines changed

8 files changed

+13
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1+
## 4.8.0
2+
- **FEAT**: Added enableIndexes abd disableIndexes methods for controller
3+
4+
Thanks for [minhdanh](https://github.com/minhdanh)
5+
16
## 4.7.0
2-
- **FEAT**: added maxSelected field for setting max selected
7+
- **FEAT**: Added maxSelected field for setting max selected
38
buttons in checkbox mode
49

510
Thanks for [gnassro](https://github.com/gnassro)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Follow these steps to use this package
4040

4141
```yaml
4242
dependencies:
43-
group_button: ^4.7.0 #latest version
43+
group_button: ^4.8.0 #latest version
4444
```
4545
4646
### Add import package

example/lib/examples/button_builder_example/example.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class _ButtonBuilderExampleState extends State<ButtonBuilderExample> {
6060
shadowColor: Colors.grey[100]?.withOpacity(0.1),
6161
backgroundColor: Colors.white,
6262
title: Text(
63-
'GroupButton 4.7.0',
63+
'GroupButton 4.8.0',
6464
style: Theme.of(context).textTheme.headline6,
6565
),
6666
),

example/lib/examples/customizable_example/customizable_example.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CustomizableExample extends StatelessWidget {
2323
shadowColor: Colors.grey[100]?.withOpacity(0.1),
2424
backgroundColor: Colors.white,
2525
title: Text(
26-
'GroupButton 4.7.0',
26+
'GroupButton 4.8.0',
2727
style: Theme.of(context).textTheme.headline6,
2828
),
2929
),

example/lib/examples/extended_example/example.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class _ExampleState extends State<_Example> {
4646
shadowColor: Colors.grey[100]?.withOpacity(0.1),
4747
backgroundColor: Colors.white,
4848
title: Text(
49-
'GroupButton 4.7.0',
49+
'GroupButton 4.8.0',
5050
style: Theme.of(context).textTheme.headline6,
5151
),
5252
),

example/lib/examples/styles_example/example.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class StylesExample extends StatelessWidget {
1414
shadowColor: Colors.grey[100]?.withOpacity(0.1),
1515
backgroundColor: Colors.white,
1616
title: Text(
17-
'GroupButton 4.7.0',
17+
'GroupButton 4.8.0',
1818
style: Theme.of(context).textTheme.headline6,
1919
),
2020
),

example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
1515
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
1616
# Read more about iOS versioning at
1717
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18-
version: 4.7.0
18+
version: 4.8.0
1919

2020
environment:
2121
sdk: ">=2.12.0 <3.0.0"

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: group_button
22
description: Flutter custom widget to make a group buttons. Included Radio and CheckBox buttons.
3-
version: 4.7.0
3+
version: 4.8.0
44
homepage: https://github.com/Frezyx/group_button
55

66
environment:

0 commit comments

Comments
 (0)