Skip to content

Commit

Permalink
Upgrade packages and test build Win demo with master
Browse files Browse the repository at this point in the history
  • Loading branch information
rydmike committed Jun 11, 2021
1 parent 76cd3db commit 09d87ec
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 21 deletions.
6 changes: 6 additions & 0 deletions example/lib/demo/screens/home/reset_settings_button.dart
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ class ResetSettingsButton extends StatelessWidget {
defaultActionText: translate.okButtonLabel,
cancelActionText: translate.cancelButtonLabel,
).show(context, useRootNavigator: true);
// TODO: Potential lint rule false positive?
// Based on this: https://dart-lang.github.io/linter/lints/use_build_context_synchronously.html
// The rule should only apply to statefull widget. This Widget is
// Stateless, can't use proposed mounted check in a stateless widget!
// Thus we ignore the new experimental lint rule for now.
// ignore: use_build_context_synchronously
if (didReset ?? false) resetSettings(context);
},
child: Padding(
Expand Down
2 changes: 0 additions & 2 deletions example/linux/flutter/generated_plugin_registrant.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Generated file. Do not edit.
//

// clang-format off

#include "generated_plugin_registrant.h"

#include <url_launcher_linux/url_launcher_plugin.h>
Expand Down
2 changes: 0 additions & 2 deletions example/linux/flutter/generated_plugin_registrant.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Generated file. Do not edit.
//

// clang-format off

#ifndef GENERATED_PLUGIN_REGISTRANT_
#define GENERATED_PLUGIN_REGISTRANT_

Expand Down
2 changes: 0 additions & 2 deletions example/macos/Flutter/GeneratedPluginRegistrant.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Generated file. Do not edit.
//

// clang-format off

import FlutterMacOS
import Foundation

Expand Down
10 changes: 5 additions & 5 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ packages:
name: hive
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.2"
version: "2.0.3"
http:
dependency: transitive
description:
Expand Down Expand Up @@ -246,7 +246,7 @@ packages:
name: node_preamble
url: "https://pub.dartlang.org"
source: hosted
version: "1.4.13"
version: "2.0.0"
package_config:
dependency: transitive
description:
Expand Down Expand Up @@ -440,21 +440,21 @@ packages:
name: test
url: "https://pub.dartlang.org"
source: hosted
version: "1.16.5"
version: "1.16.8"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.19"
version: "0.3.0"
test_core:
dependency: transitive
description:
name: test_core
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.15"
version: "0.3.19"
typed_data:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dependencies:
google_fonts: ^2.0.0

# https://pub.dev/packages/hive
hive: ^2.0.2
hive: ^2.0.3

# https://pub.dev/packages/path_provider:
path_provider: ^2.0.1
Expand Down
2 changes: 0 additions & 2 deletions example/windows/flutter/generated_plugin_registrant.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Generated file. Do not edit.
//

// clang-format off

#include "generated_plugin_registrant.h"

#include <url_launcher_windows/url_launcher_plugin.h>
Expand Down
2 changes: 0 additions & 2 deletions example/windows/flutter/generated_plugin_registrant.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// Generated file. Do not edit.
//

// clang-format off

#ifndef GENERATED_PLUGIN_REGISTRANT_
#define GENERATED_PLUGIN_REGISTRANT_

Expand Down
10 changes: 5 additions & 5 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ packages:
name: http_multi_server
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.0"
version: "3.0.1"
http_parser:
dependency: transitive
description:
Expand Down Expand Up @@ -185,7 +185,7 @@ packages:
name: node_preamble
url: "https://pub.dartlang.org"
source: hosted
version: "1.4.13"
version: "2.0.0"
package_config:
dependency: transitive
description:
Expand Down Expand Up @@ -309,21 +309,21 @@ packages:
name: test
url: "https://pub.dartlang.org"
source: hosted
version: "1.16.5"
version: "1.16.8"
test_api:
dependency: transitive
description:
name: test_api
url: "https://pub.dartlang.org"
source: hosted
version: "0.2.19"
version: "0.3.0"
test_core:
dependency: transitive
description:
name: test_core
url: "https://pub.dartlang.org"
source: hosted
version: "0.3.15"
version: "0.3.19"
typed_data:
dependency: transitive
description:
Expand Down

0 comments on commit 09d87ec

Please sign in to comment.