-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[url_launcher] Adds documentation that a launch needs to be triggered by a user action #5143
Merged
auto-submit
merged 18 commits into
flutter:main
from
nilsreichardt:add-docs-for-the-launch-url-method
Dec 8, 2023
Merged
Changes from 4 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
371edf5
[url_launcher] Adds documentation that a launch needs to be triggered…
nilsreichardt f64dcc9
Fix comment
nilsreichardt ad9ddd9
Format comment
nilsreichardt bcbc28d
Change action and launch
nilsreichardt 754fc27
Add documentation to the README.md
nilsreichardt cbcb38d
Escape `README.md` in changelog
nilsreichardt d88d1f5
Fix typo
nilsreichardt 4a63496
Merge branch 'main' into add-docs-for-the-launch-url-method
ditman 7dd42b9
Format README.md and remove paragraph
nilsreichardt 309f5d8
Merge remote-tracking branch 'origin/main' into add-docs-for-the-laun…
nilsreichardt 510b85a
Merge branch 'main' into add-docs-for-the-launch-url-method
nilsreichardt db20525
Update packages/url_launcher/url_launcher_web/CHANGELOG.md
nilsreichardt 043816d
Update packages/url_launcher/url_launcher_web/README.md
nilsreichardt 5234fb8
Update packages/url_launcher/url_launcher_web/README.md
nilsreichardt 3a03cff
Update packages/url_launcher/url_launcher/lib/src/url_launcher_uri.dart
nilsreichardt a76f52a
Update packages/url_launcher/url_launcher_web/README.md
nilsreichardt 8d140e5
Format Markdown file
nilsreichardt 8b0e995
Merge branch 'main' into add-docs-for-the-launch-url-method
nilsreichardt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I normally add these notes to the README of the web package under a "Limitations of the web platform" section (example, very similar to the Autoplay problem!), but I'm not sure if those are discoverable enough, since they're by default "hidden" in pub
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I agree that it's a bit hidden and the
README.md
would also a good place 👍 If you or @stuartmorgan like the approach withREADME.md
more, I could copy the structure of thevideo_player
package (having a short note that there are limitations on web in the main README and a more detailed description inurl_launcher_web
package).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think putting the long explanation in the README and then referencing that here is probably the best option.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I made the following changes:
README.md
ofurl_launcher
(likevideo_player
has), please let me know if this is the wrong locationREADME.md
of theurl_launcher_web
packagelaunchUrl
method