Skip to content

Commit bdc50b2

Browse files
Merge pull request #45 from Sandipkakadiya/review
Review
2 parents 88ba779 + 32c2562 commit bdc50b2

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
# Changelog
22

33

4+
## 2.0.0-nullsafety.3 - 2021-03-09
5+
6+
### Added
7+
* Added nullsafety.
8+
9+
410
## 1.2.4 - 2020-11-12
511

612
### Fixed

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ packages:
9292
path: ".."
9393
relative: true
9494
source: path
95-
version: "1.2.4"
95+
version: "2.0.0-nullsafety.3"
9696
js:
9797
dependency: transitive
9898
description:

lib/components/button/gf_button_bar.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ class GFButtonBar extends StatelessWidget {
8585
/// Defaults to 0.0.
8686
final double runSpacing;
8787

88+
/// The buttons to arrange horizontally.
89+
/// Typically [GFButton] or [GFIconButton] widgets.
90+
final List<Widget> children;
91+
8892
/// How the children within a run should be aligned relative to each other in
8993
/// the cross axis.
9094
///
@@ -154,10 +158,6 @@ class GFButtonBar extends StatelessWidget {
154158
/// [verticalDirection] must not be null.
155159
final VerticalDirection verticalDirection;
156160

157-
/// The buttons to arrange horizontally.
158-
/// Typically or [GFButton] or [GFIconButton] widgets.
159-
final List<Widget> children;
160-
161161
@override
162162
Widget build(BuildContext context) => Padding(
163163
padding: padding,

pubspec.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name: getwidget
2-
description: GetWidget is open source libraries that come with pre-build 1000+ UI components. It makes development faster & more enjoyable. You can customize the component as per your need.
3-
version: 1.2.4
2+
description: GetWidget is open source library that come with pre-build 1000+ UI components. It makes development faster & more enjoyable. You can customize the component as per your need.
3+
version: 2.0.0-nullsafety.3
44
homepage: https://github.com/ionicfirebaseapp/getwidget
55

66
environment:
7-
sdk: '>=2.12.0 <3.0.0'
7+
sdk: ">=2.12.0 <3.0.0"
88

99
dependencies:
1010
flutter:
@@ -17,4 +17,3 @@ dev_dependencies:
1717

1818
flutter:
1919
uses-material-design: true
20-

0 commit comments

Comments
 (0)