Skip to content

Commit

Permalink
shore(deps): upgrade flutter dependencies (#253)
Browse files Browse the repository at this point in the history
* upgrade drift and share_plus (allow to use web ^1.0.0)

* upgrade general dependencies

* upgrade dev dependencies

* regen ios source code
  • Loading branch information
casimir authored Sep 15, 2024
1 parent b8dfb9e commit c292e37
Show file tree
Hide file tree
Showing 6 changed files with 7,785 additions and 7,512 deletions.
8 changes: 4 additions & 4 deletions ios/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PODS:
- app_links (0.0.1):
- app_links (0.0.2):
- Flutter
- background_fetch (1.3.5):
- background_fetch (1.3.7):
- Flutter
- Flutter (1.0.0)
- package_info_plus (0.4.5):
Expand Down Expand Up @@ -82,8 +82,8 @@ EXTERNAL SOURCES:
:path: ".symlinks/plugins/url_launcher_ios/ios"

SPEC CHECKSUMS:
app_links: e70ca16b4b0f88253b3b3660200d4a10b4ea9795
background_fetch: f73d045fee3d313ea8c0afa205317bff8a6bf8d2
app_links: e7a6750a915a9e161c58d91bc610e8cd1d4d0ad0
background_fetch: 39f11371c0dce04b001c4bfd5e782bcccb0a85e2
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
package_info_plus: 58f0028419748fad15bf008b270aaa8e54380b1c
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
Expand Down
4 changes: 3 additions & 1 deletion lib/applinks/handler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,14 @@ class LinksHandler {

// TODO register custom protocol (on Windows)
// https://github.com/llfbandit/app_links/blob/0ba03114bde67dc2ee5db484a83bfced82cef5a5/example/lib/main.dart#L34
// OR even better
// https://github.com/llfbandit/app_links/blob/master/doc/README_windows.md
}

static Deeplink _handle(
RouteConfiguration router, Uri uri, OnLinkData onData) {
_log.info('trying to open $uri');
final matches = router.findMatch(uri.toString());
final matches = router.findMatch(uri);
if (matches.isEmpty) return Deeplink.invalid;
final linkType = switch (uri.pathSegments.first) {
'articles' => Deeplink.article,
Expand Down
Loading

0 comments on commit c292e37

Please sign in to comment.