Skip to content

Commit 2a3b3ce

Browse files
Merge branch 'main' into feature/image-fill-screen-dimensions
2 parents 9cf970d + 8164120 commit 2a3b3ce

File tree

12 files changed

+371
-187
lines changed

12 files changed

+371
-187
lines changed

.github/workflows/analyzer.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Analyzer
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
check_analyzer:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: subosito/flutter-action@v2.8.0
15+
with:
16+
channel: 'stable'
17+
- run: flutter packages get
18+
- run: flutter analyze

.github/workflows/formatting.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Code Formatting
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
check_formatting:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: subosito/flutter-action@v2.8.0
15+
with:
16+
channel: 'stable'
17+
- run: flutter packages get
18+
- run: dart format --set-exit-if-changed .

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: subosito/flutter-action@v2.8.0
15+
with:
16+
channel: 'stable'
17+
- run: flutter packages get
18+
- run: dart run ./tool/test_coverage_create_helper.dart
19+
- run: flutter test --coverage
20+
- run: dart run ./tool/test_coverage_filter.dart
21+
- run: dart run ./tool/test_coverage_validate_percentage.dart
22+
- name: Coveralls
23+
uses: coverallsapp/github-action@master
24+
with:
25+
github-token: ${{ secrets.GITHUB_TOKEN }}

.travis.yml

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

example/pubspec.lock

Lines changed: 74 additions & 52 deletions
Original file line numberDiff line numberDiff line change
@@ -5,51 +5,50 @@ packages:
55
dependency: transitive
66
description:
77
name: async
8-
url: "https://pub.dartlang.org"
8+
sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
9+
url: "https://pub.dev"
910
source: hosted
10-
version: "2.8.1"
11+
version: "2.11.0"
1112
boolean_selector:
1213
dependency: transitive
1314
description:
1415
name: boolean_selector
15-
url: "https://pub.dartlang.org"
16+
sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
17+
url: "https://pub.dev"
1618
source: hosted
17-
version: "2.1.0"
19+
version: "2.1.1"
1820
characters:
1921
dependency: transitive
2022
description:
2123
name: characters
22-
url: "https://pub.dartlang.org"
24+
sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
25+
url: "https://pub.dev"
2326
source: hosted
24-
version: "1.1.0"
25-
charcode:
26-
dependency: transitive
27-
description:
28-
name: charcode
29-
url: "https://pub.dartlang.org"
30-
source: hosted
31-
version: "1.3.1"
27+
version: "1.3.0"
3228
clock:
3329
dependency: transitive
3430
description:
3531
name: clock
36-
url: "https://pub.dartlang.org"
32+
sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
33+
url: "https://pub.dev"
3734
source: hosted
38-
version: "1.1.0"
35+
version: "1.1.1"
3936
collection:
4037
dependency: transitive
4138
description:
4239
name: collection
43-
url: "https://pub.dartlang.org"
40+
sha256: "4a07be6cb69c84d677a6c3096fcf960cc3285a8330b4603e0d463d15d9bd934c"
41+
url: "https://pub.dev"
4442
source: hosted
45-
version: "1.15.0"
43+
version: "1.17.1"
4644
cupertino_icons:
4745
dependency: "direct main"
4846
description:
4947
name: cupertino_icons
50-
url: "https://pub.dartlang.org"
48+
sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be
49+
url: "https://pub.dev"
5150
source: hosted
52-
version: "1.0.0"
51+
version: "1.0.5"
5352
custom_image_crop:
5453
dependency: "direct main"
5554
description:
@@ -61,9 +60,10 @@ packages:
6160
dependency: transitive
6261
description:
6362
name: fake_async
64-
url: "https://pub.dartlang.org"
63+
sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
64+
url: "https://pub.dev"
6565
source: hosted
66-
version: "1.2.0"
66+
version: "1.3.1"
6767
flutter:
6868
dependency: "direct main"
6969
description: flutter
@@ -73,7 +73,8 @@ packages:
7373
dependency: "direct main"
7474
description:
7575
name: flutter_lints
76-
url: "https://pub.dartlang.org"
76+
sha256: b543301ad291598523947dc534aaddc5aaad597b709d2426d3a0e0d44c5cb493
77+
url: "https://pub.dev"
7778
source: hosted
7879
version: "1.0.4"
7980
flutter_test:
@@ -85,37 +86,58 @@ packages:
8586
dependency: transitive
8687
description:
8788
name: gesture_x_detector
88-
url: "https://pub.dartlang.org"
89+
sha256: "39a052752c29fd3fa778bcd783996a6ca572037f6fcbcd35289d25d2513a9725"
90+
url: "https://pub.dev"
8991
source: hosted
9092
version: "1.0.0"
93+
js:
94+
dependency: transitive
95+
description:
96+
name: js
97+
sha256: f2c445dce49627136094980615a031419f7f3eb393237e4ecd97ac15dea343f3
98+
url: "https://pub.dev"
99+
source: hosted
100+
version: "0.6.7"
91101
lints:
92102
dependency: transitive
93103
description:
94104
name: lints
95-
url: "https://pub.dartlang.org"
105+
sha256: a2c3d198cb5ea2e179926622d433331d8b58374ab8f29cdda6e863bd62fd369c
106+
url: "https://pub.dev"
96107
source: hosted
97108
version: "1.0.1"
98109
matcher:
99110
dependency: transitive
100111
description:
101112
name: matcher
102-
url: "https://pub.dartlang.org"
113+
sha256: "6501fbd55da300384b768785b83e5ce66991266cec21af89ab9ae7f5ce1c4cbb"
114+
url: "https://pub.dev"
103115
source: hosted
104-
version: "0.12.10"
116+
version: "0.12.15"
117+
material_color_utilities:
118+
dependency: transitive
119+
description:
120+
name: material_color_utilities
121+
sha256: d92141dc6fe1dad30722f9aa826c7fbc896d021d792f80678280601aff8cf724
122+
url: "https://pub.dev"
123+
source: hosted
124+
version: "0.2.0"
105125
meta:
106126
dependency: transitive
107127
description:
108128
name: meta
109-
url: "https://pub.dartlang.org"
129+
sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
130+
url: "https://pub.dev"
110131
source: hosted
111-
version: "1.7.0"
132+
version: "1.9.1"
112133
path:
113134
dependency: transitive
114135
description:
115136
name: path
116-
url: "https://pub.dartlang.org"
137+
sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
138+
url: "https://pub.dev"
117139
source: hosted
118-
version: "1.8.0"
140+
version: "1.8.3"
119141
sky_engine:
120142
dependency: transitive
121143
description: flutter
@@ -125,58 +147,58 @@ packages:
125147
dependency: transitive
126148
description:
127149
name: source_span
128-
url: "https://pub.dartlang.org"
150+
sha256: dd904f795d4b4f3b870833847c461801f6750a9fa8e61ea5ac53f9422b31f250
151+
url: "https://pub.dev"
129152
source: hosted
130-
version: "1.8.1"
153+
version: "1.9.1"
131154
stack_trace:
132155
dependency: transitive
133156
description:
134157
name: stack_trace
135-
url: "https://pub.dartlang.org"
158+
sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
159+
url: "https://pub.dev"
136160
source: hosted
137-
version: "1.10.0"
161+
version: "1.11.0"
138162
stream_channel:
139163
dependency: transitive
140164
description:
141165
name: stream_channel
142-
url: "https://pub.dartlang.org"
166+
sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
167+
url: "https://pub.dev"
143168
source: hosted
144-
version: "2.1.0"
169+
version: "2.1.1"
145170
string_scanner:
146171
dependency: transitive
147172
description:
148173
name: string_scanner
149-
url: "https://pub.dartlang.org"
174+
sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
175+
url: "https://pub.dev"
150176
source: hosted
151-
version: "1.1.0"
177+
version: "1.2.0"
152178
term_glyph:
153179
dependency: transitive
154180
description:
155181
name: term_glyph
156-
url: "https://pub.dartlang.org"
182+
sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
183+
url: "https://pub.dev"
157184
source: hosted
158-
version: "1.2.0"
185+
version: "1.2.1"
159186
test_api:
160187
dependency: transitive
161188
description:
162189
name: test_api
163-
url: "https://pub.dartlang.org"
190+
sha256: eb6ac1540b26de412b3403a163d919ba86f6a973fe6cc50ae3541b80092fdcfb
191+
url: "https://pub.dev"
164192
source: hosted
165-
version: "0.4.2"
166-
typed_data:
167-
dependency: transitive
168-
description:
169-
name: typed_data
170-
url: "https://pub.dartlang.org"
171-
source: hosted
172-
version: "1.3.0"
193+
version: "0.5.1"
173194
vector_math:
174195
dependency: transitive
175196
description:
176197
name: vector_math
177-
url: "https://pub.dartlang.org"
198+
sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
199+
url: "https://pub.dev"
178200
source: hosted
179-
version: "2.1.0"
201+
version: "2.1.4"
180202
sdks:
181-
dart: ">=2.12.0 <3.0.0"
203+
dart: ">=3.0.0-0 <4.0.0"
182204
flutter: ">=2.0.2"

0 commit comments

Comments
 (0)