Skip to content

Commit 756b226

Browse files
Merge branch 'main' into main
2 parents a3f01b6 + f9528d4 commit 756b226

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
- Chore: Update dependencies
44

5+
## [1.4.2] - 2021-10-25
6+
7+
- Feat: update dependencies
8+
59
## [1.4.0] - 2021-10-13
610

711
- Feat: add form field

lib/horizontal_spacing.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,8 @@ import 'package:flutter/material.dart';
88
class HorizontalSpacing extends StatelessWidget {
99
final double width;
1010

11-
const HorizontalSpacing({
12-
Key? key,
13-
required this.width,
14-
}) : assert(width >= 0),
11+
const HorizontalSpacing(this.width, {Key? key})
12+
: assert(width >= 0),
1513
super(key: key);
1614

1715
@override

lib/vertical_spacing.dart

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ import 'package:flutter/material.dart';
77
/// It is very useful to set a margin between widgets in a Column.
88
class VerticalSpacing extends StatelessWidget {
99
final double height;
10-
const VerticalSpacing({
11-
Key? key,
12-
required this.height,
13-
}) : assert(height >= 0),
10+
const VerticalSpacing(this.height, {Key? key})
11+
: assert(height >= 0),
1412
super(key: key);
1513

1614
@override

pubspec.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ packages:
3535
name: chewie
3636
url: "https://pub.dartlang.org"
3737
source: hosted
38-
version: "1.1.0"
38+
version: "1.2.2"
3939
chewie_audio:
4040
dependency: transitive
4141
description:
@@ -96,7 +96,7 @@ packages:
9696
name: flutter_html
9797
url: "https://pub.dartlang.org"
9898
source: hosted
99-
version: "2.2.1"
99+
version: "2.1.5"
100100
flutter_layout_grid:
101101
dependency: transitive
102102
description:
@@ -232,7 +232,7 @@ packages:
232232
name: petitparser
233233
url: "https://pub.dartlang.org"
234234
source: hosted
235-
version: "4.0.2"
235+
version: "4.4.0"
236236
plugin_platform_interface:
237237
dependency: transitive
238238
description:
@@ -342,14 +342,14 @@ packages:
342342
name: url_launcher_linux
343343
url: "https://pub.dartlang.org"
344344
source: hosted
345-
version: "2.0.0"
345+
version: "2.0.2"
346346
url_launcher_macos:
347347
dependency: transitive
348348
description:
349349
name: url_launcher_macos
350350
url: "https://pub.dartlang.org"
351351
source: hosted
352-
version: "2.0.0"
352+
version: "2.0.2"
353353
url_launcher_platform_interface:
354354
dependency: transitive
355355
description:
@@ -363,14 +363,14 @@ packages:
363363
name: url_launcher_web
364364
url: "https://pub.dartlang.org"
365365
source: hosted
366-
version: "2.0.0"
366+
version: "2.0.4"
367367
url_launcher_windows:
368368
dependency: transitive
369369
description:
370370
name: url_launcher_windows
371371
url: "https://pub.dartlang.org"
372372
source: hosted
373-
version: "2.0.0"
373+
version: "2.0.2"
374374
vector_math:
375375
dependency: transitive
376376
description:
@@ -447,7 +447,7 @@ packages:
447447
name: webview_flutter_android
448448
url: "https://pub.dartlang.org"
449449
source: hosted
450-
version: "2.8.2"
450+
version: "2.0.15"
451451
webview_flutter_platform_interface:
452452
dependency: transitive
453453
description:
@@ -461,7 +461,7 @@ packages:
461461
name: webview_flutter_wkwebview
462462
url: "https://pub.dartlang.org"
463463
source: hosted
464-
version: "2.7.1"
464+
version: "2.0.14"
465465
win32:
466466
dependency: transitive
467467
description:
@@ -475,7 +475,7 @@ packages:
475475
name: xml
476476
url: "https://pub.dartlang.org"
477477
source: hosted
478-
version: "5.0.2"
478+
version: "5.3.1"
479479
sdks:
480480
dart: ">=2.14.0 <3.0.0"
481481
flutter: ">=2.5.0"

0 commit comments

Comments
 (0)