Skip to content

Commit 7b799dd

Browse files
committed
Merge branch 'master' of https://github.com/deepikahr/getflutter into animation_test
2 parents bf4e54e + 0a085cc commit 7b799dd

File tree

6 files changed

+21
-15
lines changed

6 files changed

+21
-15
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@ before_script:
2626
script:
2727
- ./../flutter/bin/flutter analyze .
2828
- ./../flutter/bin/cache/dart-sdk/bin/dartfmt --dry-run lib
29+
- ./../flutter/bin/flutter test

CHANGELOG.md

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

33

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

612
### Fixed
713
* [GFProgressBar] issue.
@@ -11,6 +17,11 @@
1117
* [GFCarousel] issue. #185
1218
* Many more minor improvements.
1319

20+
### Added
21+
* Test cases added for couple of components
22+
- GFLoader
23+
- GFTypography
24+
1425

1526

1627
## 1.2.2 - 2020-10-02

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.3"
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.3
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-

test/getflutter_test.dart

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)