Skip to content

Commit

Permalink
Update dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Siu committed Jun 19, 2023
1 parent f5055e3 commit aaa6387
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 29 deletions.
7 changes: 4 additions & 3 deletions lib/app/ui/dialog_import_export.dart
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import 'package:flutter/services.dart';
import 'package:lazy_download/lazy_download.dart' as lazy;
import 'package:lazy_extensions/lazy_extensions.dart' as lazy;
import 'package:lazy_ui_utils/lazy_ui_utils.dart' as lazy;
// import 'package:lazy_log/lazy_log.dart' as lazy;
import 'ui.dart';

class DialogImportExport extends StatefulWidget {
Expand Down Expand Up @@ -53,7 +51,10 @@ class _DialogImportExport extends State<DialogImportExport> {
);
Widget buttonSave = TextButton(
onPressed: () {
lazy.download(ctrlSetting.text.toUtf8(), downloadName: 'Pin2Me.json');
lazy.download(
content: ctrlSetting.text.toUtf8(),
filename: 'Pin2Me.json',
);
},
child: const Text('Save'),
);
Expand Down
1 change: 0 additions & 1 deletion lib/app/ui/widget_site.dart
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import 'dart:convert';
import 'package:lazy_log/lazy_log.dart' as lazy;
import 'package:lazy_extensions/lazy_extensions.dart' as lazy;
import 'package:lazy_ui_utils/lazy_ui_utils.dart' as lazy;
import 'ui.dart';

Expand Down
2 changes: 1 addition & 1 deletion lib/app/ui/widget_sync.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class _WidgetSync extends State {

@override
build(BuildContext context) {
return lazy.SpinningWidget(
return lazy.SpinWidget(
minSyncSpinningSeconds: 10,
spin: globalLazyGSync.syncing,
child: IconButton(
Expand Down
11 changes: 5 additions & 6 deletions scripts/src/ext.chrome.pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ dependencies:
http: ^1.0.0
json_preferences: ^2.0.0
lazy_cache: ^2.0.0
lazy_download: ^0.0.2
lazy_extensions: ^2.0.0
lazy_g_drive: ^2.0.0
lazy_g_sync: ^2.1.0
lazy_extensions: ^2.1.0
lazy_g_drive: ^2.1.0
lazy_g_sync: ^2.1.1
lazy_log: ^2.0.0
lazy_sign_in: ^2.1.0
lazy_sign_in_extension: ^2.1.0
lazy_ui_utils: ^0.0.2
lazy_sign_in_extension: ^2.1.2
lazy_ui_utils: ^1.0.0
provider: ^6.0.3
reorderables: ^0.6.0
theme_provider: ^0.6.0
Expand Down
11 changes: 5 additions & 6 deletions scripts/src/ext.chrome.test.pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ dependencies:
http: ^1.0.0
json_preferences: ^2.0.0
lazy_cache: ^2.0.0
lazy_download: ^0.0.2
lazy_extensions: ^2.0.0
lazy_g_drive: ^2.0.0
lazy_g_sync: ^2.1.0
lazy_extensions: ^2.1.0
lazy_g_drive: ^2.1.0
lazy_g_sync: ^2.1.1
lazy_log: ^2.0.0
lazy_sign_in: ^2.1.0
lazy_sign_in_extension: ^2.1.0
lazy_ui_utils: ^0.0.2
lazy_sign_in_extension: ^2.1.2
lazy_ui_utils: ^1.0.0
provider: ^6.0.3
reorderables: ^0.6.0
theme_provider: ^0.6.0
Expand Down
11 changes: 5 additions & 6 deletions scripts/src/ext.moz.pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ dependencies:
http: ^1.0.0
json_preferences: ^2.0.0
lazy_cache: ^2.0.0
lazy_download: ^0.0.2
lazy_extensions: ^2.0.0
lazy_g_drive: ^2.0.0
lazy_g_sync: ^2.1.0
lazy_extensions: ^2.1.0
lazy_g_drive: ^2.1.0
lazy_g_sync: ^2.1.1
lazy_log: ^2.0.0
lazy_sign_in: ^2.1.0
lazy_sign_in_extension: ^2.1.0
lazy_ui_utils: ^0.0.2
lazy_sign_in_extension: ^2.1.2
lazy_ui_utils: ^1.0.0
provider: ^6.0.3
reorderables: ^0.6.0
theme_provider: ^0.6.0
Expand Down
11 changes: 5 additions & 6 deletions scripts/src/web.pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ dependencies:
http: ^1.0.0
json_preferences: ^2.0.0
lazy_cache: ^2.0.0
lazy_download: ^0.0.2
lazy_extensions: ^2.0.0
lazy_g_drive: ^2.0.0
lazy_g_sync: ^2.1.0
lazy_extensions: ^2.1.0
lazy_g_drive: ^2.1.0
lazy_g_sync: ^2.1.1
lazy_log: ^2.0.0
lazy_sign_in: ^2.1.0
lazy_sign_in_google: ^2.1.0
lazy_ui_utils: ^0.0.2
lazy_sign_in_google: ^2.1.1
lazy_ui_utils: ^1.0.0
provider: ^6.0.3
reorderables: ^0.6.0
theme_provider: ^0.6.0
Expand Down

0 comments on commit aaa6387

Please sign in to comment.