Skip to content

Commit 38ba269

Browse files
Sandip KakadiyaSandip Kakadiya
authored andcommitted
merged
2 parents e1b7297 + 1b765b2 commit 38ba269

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+2767
-2413
lines changed

CHANGELOG.md

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

3+
## 1.1.3 - 2020-07-30
4+
5+
### Fixed
6+
* [GFAppBar] clear button does not fire onChanged #149
7+
* [GFCarousel] initialPage Not Honored if Page Indicators Enabled. #144
8+
* [GFCarousel] timer of the autoPlay is not disposed #143
9+
* [GFCarousel] active page indicator is not being updated without "onPageChanged" #139
10+
* [GFTabBar] Docs say about isScrollable which is not supported #132
11+
12+
### Update
13+
* couple of compoenents (WIP)
14+
- GFCheckboxTile
15+
- GFRadioTile
16+
17+
18+
319
## 1.1.1 - 2020-06-26
420

521
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[![pub package](https://img.shields.io/pub/v/getwidget.svg)](https://pub.dartlang.org/packages/getwidget) [![Build Status](https://travis-ci.org/ionicfirebaseapp/getwidget.svg?branch=master)](https://travis-ci.com/ionicfirebaseapp/getwidget) [![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=102)](https://opensource.org/licenses/MIT) [![License](https://img.shields.io/badge/license-MIT-orange.svg)](https://github.com/ionicfirebaseapp/getwidget/blob/master/LICENSE) [![Twitter Follow](https://img.shields.io/twitter/follow/getwidgetdev.svg?style=social)](https://twitter.com/getwidgetdev)
22

3-
43
<p align="center">
54
<a href="https://docs.getwidget.dev/" target="_blank">
65
<img src="https://ik.imagekit.io/ionicfirebaseapp/logo.black_iOBoLWdj2I.png" alt="GetWidget">
@@ -28,6 +27,7 @@
2827
</p>
2928

3029

30+
3131
## Quick start
3232

3333
Read the [Getting started page](https://docs.getwidget.dev)
@@ -62,7 +62,7 @@ we have launched the library with the following components :
6262
* Write and improve some **documentation**. Documentation is very critical to us. We would appreciate help in adding multiple languages to our docs.
6363
* If you are a developer, feel free to check out the source and submit pull requests.
6464
* Dig into [**CONTRIBUTING.MD**](CONTRIBUTING.md), which covers submitting bugs, requesting new features, preparing your code for a pull request, etc.
65-
* Please don't forget to **like**, **follow**, and **star our repo**! Join our growing [community](http://forum.getwidget.dev) to keep up to date with the latest GetWidget development.
65+
* Please don't forget to **like**, **follow**, and **star our repo**! Join our growing [community](https://forum.getwidget.dev) to keep up to date with the latest GetWidget development.
6666

6767

6868

analysis_options.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ linter:
1313
# conflicts with the Flutter convention of putting {Key key} first and {Widget child} last
1414
# - always_put_required_named_parameters_first
1515
- always_require_non_null_named_parameters
16-
# - annotate_overrides
16+
- annotate_overrides
1717
- avoid_annotating_with_dynamic
1818
- avoid_as
1919
- avoid_bool_literals_in_conditional_expressions
@@ -33,7 +33,7 @@ linter:
3333
- avoid_relative_lib_imports
3434
- avoid_renaming_method_parameters
3535
- avoid_return_types_on_setters
36-
# - avoid_returning_null
36+
- avoid_returning_null
3737
- avoid_returning_null_for_void
3838
- avoid_returning_this
3939
- avoid_setters_without_getters
@@ -49,6 +49,7 @@ linter:
4949
# - cascade_invocations
5050
- close_sinks
5151
- comment_references
52+
# required for couple of GetWidget pattern
5253
# - constant_identifier_names
5354
- control_flow_in_finally
5455
- curly_braces_in_flow_control_structures
@@ -75,7 +76,7 @@ linter:
7576
# - omit_local_variable_types
7677
- one_member_abstracts
7778
- only_throw_errors
78-
# in some places it is required to override fileds
79+
# in some places it is required to override fields
7980
# - overridden_fields
8081
- package_api_docs
8182
- package_names

example/lib/main.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ class MyApp extends StatelessWidget {
1414
);
1515
}
1616

17-
//
1817
class MyHomePage extends StatefulWidget {
1918
@override
2019
_MyHomePageState createState() => _MyHomePageState();

0 commit comments

Comments
 (0)