maRci002

Results 79 comments of maRci002

`url_launcher` could list which applications could handle the url for instance `https://www.example.com/deeplink` An Android app [can register](https://developer.android.com/training/app-links#web-links) to handle `https://www.example.com/deeplink`: ```xml ``` Note: If I add `android:autoVerify="true"` to `` then...

`listAppsCanLaunch` is just a proposal and to tell the truth it might not be the best name. If I have some free time I'm going to create Pull Request to...

Can you please try one more thing before I open a proposal? Try different [LaunchMode](https://pub.dev/documentation/url_launcher/latest/url_launcher_string/LaunchMode.html)s, `launchUrl(url, mode: LaunchMode.externalApplication)` `LaunchMode.externalApplication` launches the URL in another application, typically a web browser, while...

Sorry I won't make a PR since I should create appropirate Linux, Windows, MacOS implementations and tests as well. Here is what you can do: 1) Provide appropirate `queries` [to...

This works however you have to do it every time when new version comes out especially when it will use `Pigeon` instead of direct `MethodChannel`, see: #117915 And in the...

> When I try to do it like this, it still works the same old way, shows App as an option too, but when I use result[1] then it works...

@huycozy without `Beamer` dependency I can reproduce: https://docs.flutter.dev/development/ui/navigation/url-strategies ```dart import 'package:flutter_web_plugins/url_strategy.dart'; void main() { usePathUrlStrategy(); runApp(ExampleApp()); } ```

Here is minimal code without any third party package. https://user-images.githubusercontent.com/8436039/215484748-200a29fc-9fbb-4fa5-ada8-27673635a5de.mp4 Update `pubspec.yaml` to support `usePathUrlStrategy` ```yaml dependencies: flutter: sdk: flutter # add this line to allow # import 'package:flutter_web_plugins/flutter_web_plugins.dart'; #...

Master channel seems fine. In case you want to use stable channel apply [this workaround](https://github.com/flutter/flutter/issues/116360#issuecomment-1364181861) to `./project-root/web/index.html`