Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-Ioannou committed Jul 17, 2022
1 parent 68fcc6e commit 089423f
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
3 changes: 2 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ linter:
prefer_initializing_formals: false
avoid_escaping_inner_quotes: false
avoid_classes_with_only_static_members: false

always_use_package_imports: false


analyzer:
errors:
Expand Down
4 changes: 2 additions & 2 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ packages:
path: ".."
relative: true
source: path
version: "2.0.1"
version: "2.0.2"
async:
dependency: transitive
description:
Expand Down Expand Up @@ -169,7 +169,7 @@ packages:
name: universal_io
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.0.4"
vector_math:
dependency: transitive
description:
Expand Down
3 changes: 2 additions & 1 deletion lib/src/bottom_sheet_alert.dart
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,8 @@ Future<T?> _showMaterialBottomSheet<T>(
padding: const EdgeInsets.all(16.0),
child: DefaultTextStyle(
style: defaultTextStyle.copyWith(
color: Colors.lightBlue),
color: Colors.lightBlue,
),
textAlign: TextAlign.center,
child: cancelAction.title,
),
Expand Down
15 changes: 11 additions & 4 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,21 @@ packages:
name: lint
url: "https://pub.dartlang.org"
source: hosted
version: "1.5.3"
version: "1.8.2"
matcher:
dependency: transitive
description:
name: matcher
url: "https://pub.dartlang.org"
source: hosted
version: "0.12.11"
material_color_utilities:
dependency: transitive
description:
name: material_color_utilities
url: "https://pub.dartlang.org"
source: hosted
version: "0.1.3"
meta:
dependency: transitive
description:
Expand Down Expand Up @@ -141,7 +148,7 @@ packages:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.4.3"
version: "0.4.8"
typed_data:
dependency: transitive
description:
Expand All @@ -155,7 +162,7 @@ packages:
name: universal_io
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.0.4"
vector_math:
dependency: transitive
description:
Expand All @@ -164,4 +171,4 @@ packages:
source: hosted
version: "2.1.1"
sdks:
dart: ">=2.14.0 <3.0.0"
dart: ">=2.15.0-7.0.dev <3.0.0"
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: adaptive_action_sheet
description: A Flutter package for action bottom sheet that adapts to the platform (Android/iOS).

version: 2.0.1
version: 2.0.2
homepage: https://github.com/Daniel-Ioannou
repository: https://github.com/Daniel-Ioannou/flutter_adaptive_action_sheet.git

Expand All @@ -11,12 +11,12 @@ environment:
dependencies:
flutter:
sdk: flutter
universal_io: ^2.0.0
universal_io: ^2.0.4

dev_dependencies:
flutter_test:
sdk: flutter
lint: ^1.5.3
lint: ^1.8.2

flutter:
uses-material-design: true

0 comments on commit 089423f

Please sign in to comment.