-
Notifications
You must be signed in to change notification settings - Fork 3.5k
[video_player_platform_interface] synchronize isPlaying state #3361
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
[video_player_platform_interface] synchronize isPlaying state #3361
Conversation
It looks like this pull request may not have tests. Please make sure to add tests before merging. If you need an exemption to this rule, contact Hixie on the #hackers channel in Chat (don't just cc him here, he won't see it! He's on Discord!). If you are not sure if you need tests, consider this rule of thumb: the purpose of a test is to make sure someone doesn't accidentally revert the fix. Ask yourself, is there anything in your PR that you feel it is important we not accidentally revert back to how it was before your fix? Reviewers: Read the Tree Hygiene page and make sure this patch meets those guidelines before LGTMing. |
…-platform-interface
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.
@stuartmorgan It looks like this is causing analyze errors because of the enum change. Based on flutter/flutter#89866 (comment), should this temporarily add
// ignore: missing_enum_constant_in_switch
to the implementation packages.
Yes, since there's no impact from not handling it (as it's just example code), just ignoring it in this PR and then removing the |
packages/video_player/video_player_platform_interface/pubspec.yaml
Outdated
Show resolved
Hide resolved
@maRci002 As mentioned above, can you add |
@bparrishMines I've added Now I've some errors in the CHANGELOG in the following packages: |
Overriding version and changelog checks: the changes are |
This will need to wait for #3417 to land and then be re-merged, to avoid breaking post-submit. |
@stuartmorgan I've re-merged the newest main.
This is the disadvantage of: flutter/flutter#89866 (comment) |
I expected that, but misremembered and thought we had a way to override it in presubmit (which is why I suggested waiting rather than splitting it initially, sorry about that). I filed flutter/flutter#122390 for the false positive, but for now you can just split the ignores into a new PR. We can get that landed quickly, unblocking this one. |
I created the ignore PR: #3435, when it is merged, then I will update this branch and remove the ignores in this PR however I won't be able to do that so I'll remove the ignores in #3261 PR. |
Removing the overrides since those changes will be moving to the other PR. |
I have updated this PR to not touch ignores meanwhile updated #3261 to remove lint checks. |
This will help https://www.youtube.com/watch?v=IMQdSTlTXjA |
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.
LGTM
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.
LGTM
…r#3361) [video_player_platform_interface] synchronize isPlaying state
This PR is part of #3261
This is why this part is created: https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages#changing-federated-plugins
Pre-launch Checklist
dart format
.)[shared_preferences]
pubspec.yaml
with an appropriate new version according to the pub versioning philosophy, or this PR is exempt from version changes.CHANGELOG.md
to add a description of the change, following repository CHANGELOG style.///
).If you need help, consider asking for advice on the #hackers-new channel on Discord.