Skip to content

Commit 61d56ff

Browse files
Sandip KakadiyaSandip Kakadiya
authored andcommitted
changelog added
1 parent ee489ab commit 61d56ff

File tree

4 files changed

+31
-5
lines changed

4 files changed

+31
-5
lines changed

CHANGELOG.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Changelog
22

3+
4+
## 1.2.1 - 2020-10-02
5+
6+
### Fixed
7+
* [GFButton] width related issue.
8+
* [GFRadio] minor issue.
9+
* [GFRadioListTile] selection issue
10+
* [GFCheckbox] minor issue.
11+
* [GFCheckboxListTile] selection issue
12+
* Many more minor improvements.
13+
14+
### Added
15+
* few new compoenents added
16+
- GFBottomSheet
17+
- GFIntroScreen
18+
- GFAnimation
19+
- GFBorder
20+
- GFStickyHeader
21+
22+
23+
324
## 1.1.3 - 2020-07-30
425

526
### Fixed
@@ -9,7 +30,7 @@
930
* [GFCarousel] active page indicator is not being updated without "onPageChanged" #139
1031
* [GFTabBar] Docs say about isScrollable which is not supported #132
1132

12-
### Update
33+
### Added
1334
* couple of compoenents (WIP)
1435
- GFCheckboxTile
1536
- GFRadioTile

lib/getwidget.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ export 'package:getwidget/components/tabs/gf_tabs.dart';
4545
export 'package:getwidget/components/toast/gf_toast.dart';
4646
export 'package:getwidget/components/toggle/gf_toggle.dart';
4747
export 'package:getwidget/components/typography/gf_typography.dart';
48-
export 'package:getwidget/components/dropdown/gf_dropdown.dart';
49-
export 'package:getwidget/components/dropdown/gf_multiselect.dart';
48+
// export 'package:getwidget/components/dropdown/gf_dropdown.dart';
49+
// export 'package:getwidget/components/dropdown/gf_multiselect.dart';
5050

5151
export 'colors/gf_color.dart';
5252
export 'direction/gf_shimmer_direction.dart';

lib/position/gf_position.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ enum GFPosition {
55
start,
66

77
/// [GFPosition.end] is used to place icon, badges to end of the GFButton and GFButtonBadge
8-
end
8+
end,
99
}

lib/types/gf_border_type.dart

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
enum GFBorderType { circle, rRect, rect, oval }
1+
enum GFBorderType {
2+
circle,
3+
rRect,
4+
rect,
5+
oval,
6+
}

0 commit comments

Comments
 (0)