Skip to content

Commit

Permalink
Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
creativecreatorormaybenot committed Dec 14, 2024
1 parent 695629d commit 61f668b
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 27 deletions.
10 changes: 5 additions & 5 deletions fireworks/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -90,18 +90,18 @@ packages:
dependency: transitive
description:
name: material_color_utilities
sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41"
sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
url: "https://pub.dev"
source: hosted
version: "0.5.0"
version: "0.8.0"
meta:
dependency: transitive
description:
name: meta
sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e
sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
url: "https://pub.dev"
source: hosted
version: "1.10.0"
version: "1.12.0"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -268,5 +268,5 @@ packages:
source: hosted
version: "0.2.0"
sdks:
dart: ">=3.2.0 <4.0.0"
dart: ">=3.3.0-0 <4.0.0"
flutter: ">=2.10.0-0"
9 changes: 5 additions & 4 deletions fireworks_demo/lib/main.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import 'package:fireworks/fireworks.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:url_launcher/url_launcher_string.dart';
import 'package:url_strategy/url_strategy.dart';
import 'package:flutter_web_plugins/url_strategy.dart';

void main() {
setPathUrlStrategy();
usePathUrlStrategy();
setUrlStrategy(PathUrlStrategy());
runApp(MaterialApp(
title: 'Fireworks',
theme: ThemeData(
Expand Down Expand Up @@ -94,7 +95,7 @@ class _FireworksState extends State<_Fireworks>
child: Tooltip(
message: 'fireworks repo on GitHub',
child: MouseRegion(
cursor: MaterialStateMouseCursor.clickable,
cursor: WidgetStateMouseCursor.clickable,
child: GestureDetector(
onTap: () {
launchUrlString(
Expand All @@ -117,7 +118,7 @@ class _FireworksState extends State<_Fireworks>
child: Tooltip(
message: '@creativemaybeno on Twitter',
child: MouseRegion(
cursor: MaterialStateMouseCursor.clickable,
cursor: WidgetStateMouseCursor.clickable,
child: GestureDetector(
onTap: () {
launchUrlString(
Expand Down
2 changes: 1 addition & 1 deletion fireworks_demo/macos/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ SPEC CHECKSUMS:

PODFILE CHECKSUM: 353c8bcc5d5b0994e508d035b5431cfe18c1dea7

COCOAPODS: 1.12.0
COCOAPODS: 1.15.2
2 changes: 1 addition & 1 deletion fireworks_demo/macos/Runner.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0920;
LastUpgradeCheck = 1430;
LastUpgradeCheck = 1510;
ORGANIZATIONNAME = "";
TargetAttributes = {
33CC10EC2044A3C60003C045 = {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1430"
LastUpgradeVersion = "1510"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
20 changes: 6 additions & 14 deletions fireworks_demo/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ packages:
source: sdk
version: "0.0.0"
flutter_web_plugins:
dependency: transitive
dependency: "direct main"
description: flutter
source: sdk
version: "0.0.0"
Expand Down Expand Up @@ -100,18 +100,18 @@ packages:
dependency: transitive
description:
name: material_color_utilities
sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41"
sha256: "0e0a020085b65b6083975e499759762399b4475f766c21668c4ecca34ea74e5a"
url: "https://pub.dev"
source: hosted
version: "0.5.0"
version: "0.8.0"
meta:
dependency: transitive
description:
name: meta
sha256: a6e590c838b18133bb482a2745ad77c5bb7715fb0451209e1a7567d416678b8e
sha256: "7687075e408b093f36e6bbf6c91878cc0d4cd10f409506f7bc996f68220b9136"
url: "https://pub.dev"
source: hosted
version: "1.10.0"
version: "1.12.0"
path:
dependency: transitive
description:
Expand Down Expand Up @@ -293,14 +293,6 @@ packages:
url: "https://pub.dev"
source: hosted
version: "3.1.1"
url_strategy:
dependency: "direct main"
description:
name: url_strategy
sha256: "42b68b42a9864c4d710401add17ad06e28f1c1d5500c93b98c431f6b0ea4ab87"
url: "https://pub.dev"
source: hosted
version: "0.2.0"
vector_math:
dependency: transitive
description:
Expand Down Expand Up @@ -334,5 +326,5 @@ packages:
source: hosted
version: "1.0.4"
sdks:
dart: ">=3.2.0 <4.0.0"
dart: ">=3.3.0-0 <4.0.0"
flutter: ">=3.16.0"
3 changes: 2 additions & 1 deletion fireworks_demo/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ environment:
dependencies:
flutter:
sdk: flutter
flutter_web_plugins:
sdk: flutter

fireworks:
path: ../fireworks

url_launcher: ^6.0.2
url_strategy: ^0.2.0

dev_dependencies:
pedantic: ^1.11.0
Expand Down

0 comments on commit 61f668b

Please sign in to comment.