Skip to content

Commit 2eeab0c

Browse files
authored
Merge pull request #16 from ionicfirebaseapp/master
master pull
2 parents ba2f2c5 + 53212aa commit 2eeab0c

Some content is hidden

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

43 files changed

+1943
-1933
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ build/
3131
web/
3232
getflutter-app-kit
3333
getflutter-web-kit
34+
getflutter_app
3435

3536
# Android related
3637
**/android/**/gradle-wrapper.jar

CHANGELOG.md

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,38 @@
11
# Changelog
22

3+
## 1.0.3 - 2020-01-30
4+
5+
### Fixed
6+
* GFToggle - minor issue fixed
7+
8+
### Added
9+
* added few new components
10+
- GFAccordian
11+
- GFAlert
12+
- GFSearchBar
13+
- GFDrawer
14+
- GFAppBar
15+
16+
17+
318

419
## 1.0.2 - 2020-01-23
520

621
### Fixed
722
* import issue fixed.
823

924

25+
26+
1027
## 1.0.1 - 2020-01-22
1128

1229
### Added
13-
* added couple of new components
30+
* added few new components
1431
- GFToast
1532
- GFFloatingWidget
33+
- GFToggle
34+
35+
1636

1737

1838
## 1.0.0 - 2020-01-20
@@ -36,29 +56,40 @@
3656
- GFTypography
3757

3858

59+
60+
3961
## 1.0.0-dev.9 - 2020-01-17
4062

4163
### Added
4264
* Added library exports for commonly used files.
4365

4466

67+
68+
4569
## 1.0.0-dev.8 - 2020-01-16
4670

4771
### Fixed
4872
* ListTile re-implemeted.
4973

74+
75+
76+
5077
## 1.0.0-dev.3 - 2020-01-15
5178

5279
### Fixed
5380
* ListTile issue.
5481

5582

83+
84+
5685
## 1.0.0-dev.1 - 2020-01-14
5786

5887
### Fixed
5988
* Warnings and Hints
6089

6190

91+
92+
6293
## 0.0.1-pre.3 - 2020-01-14
6394

6495
### Fixed
@@ -68,12 +99,16 @@
6899
* Changelog and Description
69100

70101

102+
103+
71104
## 0.0.1-pre.2 - 2020-01-14
72105

73106
### Fixed
74107
* Warnings and Hints
75108

76109

110+
111+
77112
## 0.0.1-pre.1 - 2020-01-13
78113

79114
### Added

analysis_options.yaml

Lines changed: 137 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
analyzer:
2+
exclude:
3+
- example
4+
- getflutter_app
5+
- getflutter-app-kit
6+
- getflutter-web-kit
7+
8+
linter:
9+
rules:
10+
- always_declare_return_types
11+
- always_put_control_body_on_new_line
12+
# conflicts with the Flutter convention of putting {Key key} first and {Widget child} last
13+
# - always_put_required_named_parameters_first
14+
- always_require_non_null_named_parameters
15+
# - annotate_overrides
16+
# required to Allow bith GFColors and Colors
17+
# - avoid_annotating_with_dynamic
18+
- avoid_as
19+
- avoid_bool_literals_in_conditional_expressions
20+
- avoid_catches_without_on_clauses
21+
- avoid_catching_errors
22+
- avoid_classes_with_only_static_members
23+
- avoid_double_and_int_checks
24+
- avoid_empty_else
25+
- avoid_field_initializers_in_const_classes
26+
- avoid_function_literals_in_foreach_calls
27+
- avoid_implementing_value_types
28+
- avoid_init_to_null
29+
- avoid_js_rounded_ints
30+
- avoid_null_checks_in_equality_operators
31+
- avoid_positional_boolean_parameters
32+
- avoid_private_typedef_functions
33+
- avoid_relative_lib_imports
34+
- avoid_renaming_method_parameters
35+
- avoid_return_types_on_setters
36+
# - avoid_returning_null
37+
- avoid_returning_null_for_void
38+
- avoid_returning_this
39+
- avoid_setters_without_getters
40+
- avoid_single_cascade_in_expression_statements
41+
- avoid_slow_async_io
42+
- avoid_types_as_parameter_names
43+
- avoid_unused_constructor_parameters
44+
- avoid_void_async
45+
- await_only_futures
46+
- camel_case_types
47+
- cancel_subscriptions
48+
# for some Animation use we have to perform cascade invocations
49+
# - cascade_invocations
50+
- close_sinks
51+
- comment_references
52+
# - constant_identifier_names
53+
- control_flow_in_finally
54+
- curly_braces_in_flow_control_structures
55+
- directives_ordering
56+
- empty_catches
57+
- empty_constructor_bodies
58+
- empty_statements
59+
- file_names
60+
- flutter_style_todos
61+
- hash_and_equals
62+
- implementation_imports
63+
- invariant_booleans
64+
- iterable_contains_unrelated_type
65+
- join_return_with_assignment
66+
- library_names
67+
- library_prefixes
68+
- list_remove_unrelated_type
69+
- literal_only_boolean_expressions
70+
- no_adjacent_strings_in_list
71+
- no_duplicate_case_values
72+
- non_constant_identifier_names
73+
- null_closures
74+
# we prefer strongly declared variable even local variables
75+
# - omit_local_variable_types
76+
- one_member_abstracts
77+
- only_throw_errors
78+
# in some places it is required to override fileds
79+
# - overridden_fields
80+
- package_api_docs
81+
- package_names
82+
- package_prefixed_library_names
83+
- parameter_assignments
84+
- prefer_adjacent_string_concatenation
85+
- prefer_asserts_in_initializer_lists
86+
- prefer_collection_literals
87+
- prefer_conditional_assignment
88+
- prefer_const_constructors
89+
- prefer_const_constructors_in_immutables
90+
- prefer_const_declarations
91+
- prefer_const_literals_to_create_immutables
92+
- prefer_constructors_over_static_methods
93+
- prefer_contains
94+
- prefer_equal_for_default_values
95+
- prefer_expression_function_bodies
96+
- prefer_final_fields
97+
- prefer_final_locals
98+
- prefer_foreach
99+
- prefer_function_declarations_over_variables
100+
- prefer_generic_function_type_aliases
101+
- prefer_initializing_formals
102+
- prefer_int_literals
103+
- prefer_interpolation_to_compose_strings
104+
- prefer_is_empty
105+
- prefer_is_not_empty
106+
- prefer_iterable_whereType
107+
- prefer_mixin
108+
- prefer_single_quotes
109+
- prefer_typing_uninitialized_variables
110+
- prefer_void_to_null
111+
- recursive_getters
112+
- slash_for_doc_comments
113+
- sort_constructors_first
114+
- sort_pub_dependencies
115+
- sort_unnamed_constructors_first
116+
- test_types_in_equals
117+
- throw_in_finally
118+
- type_annotate_public_apis
119+
- type_init_formals
120+
- unawaited_futures
121+
- unnecessary_brace_in_string_interps
122+
- unnecessary_const
123+
- unnecessary_getters_setters
124+
- unnecessary_lambdas
125+
- unnecessary_new
126+
- unnecessary_null_aware_assignments
127+
- unnecessary_null_in_if_null_operators
128+
- unnecessary_overrides
129+
- unnecessary_parenthesis
130+
- unnecessary_statements
131+
- unnecessary_this
132+
- unrelated_type_equality_checks
133+
- use_rethrow_when_possible
134+
- use_string_buffers
135+
- use_to_and_as_if_applicable
136+
- valid_regexps
137+
- void_checks

example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import 'package:flutter/material.dart';
2+
import 'package:flutter/widgets.dart';
23
import 'package:getflutter/getflutter.dart';
34

45
final List<String> imageList = [
@@ -176,7 +177,6 @@ class _MyHomePageState extends State<MyHomePage>
176177
// Container(color: Colors.blue)
177178
// ]),
178179

179-
180180
SingleChildScrollView(
181181
child: Column(
182182
mainAxisAlignment: MainAxisAlignment.center,

example/pubspec.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ packages:
8080
path: ".."
8181
relative: true
8282
source: path
83-
version: "1.0.2"
83+
version: "1.0.3"
8484
image:
8585
dependency: transitive
8686
description:

0 commit comments

Comments
 (0)