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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## 1.1.2 - 2020-07-30

### Fixed
* [GFAppBar] clear button does not fire onChanged #149
* [GFCarousel] initialPage Not Honored if Page Indicators Enabled. #144
* [GFCarousel] timer of the autoPlay is not disposed #143
* [GFCarousel] active page indicator is not being updated without "onPageChanged" #139
* [GFTabBar] Docs say about isScrollable which is not supported #132

### Update
* couple of compoenents (WIP)
- GFCheckboxTile
- GFRadioTile



## 1.1.1 - 2020-06-26

### Added
Expand Down
7 changes: 4 additions & 3 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ linter:
# conflicts with the Flutter convention of putting {Key key} first and {Widget child} last
# - always_put_required_named_parameters_first
- always_require_non_null_named_parameters
# - annotate_overrides
- annotate_overrides
- avoid_annotating_with_dynamic
- avoid_as
- avoid_bool_literals_in_conditional_expressions
Expand All @@ -33,7 +33,7 @@ linter:
- avoid_relative_lib_imports
- avoid_renaming_method_parameters
- avoid_return_types_on_setters
# - avoid_returning_null
- avoid_returning_null
- avoid_returning_null_for_void
- avoid_returning_this
- avoid_setters_without_getters
Expand All @@ -49,6 +49,7 @@ linter:
# - cascade_invocations
- close_sinks
- comment_references
# required for couple of GetWidget pattern
# - constant_identifier_names
- control_flow_in_finally
- curly_braces_in_flow_control_structures
Expand All @@ -75,7 +76,7 @@ linter:
# - omit_local_variable_types
- one_member_abstracts
- only_throw_errors
# in some places it is required to override fileds
# in some places it is required to override fields
# - overridden_fields
- package_api_docs
- package_names
Expand Down
74 changes: 51 additions & 23 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
@@ -1,62 +1,69 @@
# Generated by pub
# See https://dart.dev/tools/pub/glossary#lockfile
packages:
archive:
dependency: transitive
description:
name: archive
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.11"
args:
dependency: transitive
description:
name: args
url: "https://pub.dartlang.org"
source: hosted
version: "1.5.2"
async:
dependency: transitive
description:
name: async
url: "https://pub.dartlang.org"
source: hosted
version: "2.4.1"
version: "2.4.0"
boolean_selector:
dependency: transitive
description:
name: boolean_selector
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "1.0.5"
charcode:
dependency: transitive
description:
name: charcode
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.3"
clock:
dependency: transitive
description:
name: clock
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1"
version: "1.1.2"
collection:
dependency: transitive
description:
name: collection
url: "https://pub.dartlang.org"
source: hosted
version: "1.14.12"
version: "1.14.11"
convert:
dependency: transitive
description:
name: convert
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.1"
crypto:
dependency: transitive
description:
name: crypto
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.3"
cupertino_icons:
dependency: "direct main"
description:
name: cupertino_icons
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.3"
fake_async:
dependency: transitive
description:
name: fake_async
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down Expand Up @@ -85,7 +92,14 @@ packages:
path: ".."
relative: true
source: path
version: "1.1.1"
version: "1.1.2"
image:
dependency: transitive
description:
name: image
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.4"
matcher:
dependency: transitive
description:
Expand All @@ -106,7 +120,7 @@ packages:
name: path
url: "https://pub.dartlang.org"
source: hosted
version: "1.7.0"
version: "1.6.4"
path_drawing:
dependency: transitive
description:
Expand All @@ -121,6 +135,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.4"
pedantic:
dependency: transitive
description:
name: pedantic
url: "https://pub.dartlang.org"
source: hosted
version: "1.8.0+1"
petitparser:
dependency: transitive
description:
Expand All @@ -135,6 +156,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.1"
quiver:
dependency: transitive
description:
name: quiver
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.5"
sky_engine:
dependency: transitive
description: flutter
Expand All @@ -146,7 +174,7 @@ packages:
name: source_span
url: "https://pub.dartlang.org"
source: hosted
version: "1.7.0"
version: "1.5.5"
stack_trace:
dependency: transitive
description:
Expand Down Expand Up @@ -181,7 +209,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.15"
version: "0.2.11"
typed_data:
dependency: transitive
description:
Expand Down Expand Up @@ -232,5 +260,5 @@ packages:
source: hosted
version: "3.5.0"
sdks:
dart: ">=2.6.0 <3.0.0"
dart: ">=2.4.0 <3.0.0"
flutter: ">=1.12.8 <2.0.0"
2 changes: 1 addition & 1 deletion lib/components/button/gf_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ class _GFButtonState extends State<GFButton> {
} else if (widget.fullWidthButton == true) {
return MediaQuery.of(context).size.width;
} else {
return null;
return MediaQuery.of(context).size.width * 0.88;
}
}

Expand Down
Loading