Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog


## 2.0.0-nullsafety.3 - 2021-03-09

### Added
* Added nullsafety.


## 1.2.4 - 2020-11-12

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ packages:
path: ".."
relative: true
source: path
version: "1.2.4"
version: "2.0.0-nullsafety.3"
js:
dependency: transitive
description:
Expand Down
8 changes: 4 additions & 4 deletions lib/components/button/gf_button_bar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ class GFButtonBar extends StatelessWidget {
/// Defaults to 0.0.
final double runSpacing;

/// The buttons to arrange horizontally.
/// Typically [GFButton] or [GFIconButton] widgets.
final List<Widget> children;

/// How the children within a run should be aligned relative to each other in
/// the cross axis.
///
Expand Down Expand Up @@ -154,10 +158,6 @@ class GFButtonBar extends StatelessWidget {
/// [verticalDirection] must not be null.
final VerticalDirection verticalDirection;

/// The buttons to arrange horizontally.
/// Typically or [GFButton] or [GFIconButton] widgets.
final List<Widget> children;

@override
Widget build(BuildContext context) => Padding(
padding: padding,
Expand Down
7 changes: 3 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: getwidget
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.
version: 1.2.4
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.
version: 2.0.0-nullsafety.3
homepage: https://github.com/ionicfirebaseapp/getwidget

environment:
sdk: '>=2.12.0 <3.0.0'
sdk: ">=2.12.0 <3.0.0"

dependencies:
flutter:
Expand All @@ -17,4 +17,3 @@ dev_dependencies:

flutter:
uses-material-design: true