Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: flutter/packages
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: db6988d785fa
Choose a base ref
...
head repository: flutter/packages
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f0645d8448a5
Choose a head ref
  • 3 commits
  • 13 files changed
  • 3 contributors

Commits on Jul 31, 2025

  1. [video_player] Separate event stream from player on iOS (#9700)

    Abstracts the details of the native->Dart communication system from the player instance by adding a listener protocol, and moving the event channel into an implementation of that protocol.
    
    Also simplifies the logic to avoid messaging races during channel setup by adding a generic queue to the listener implementation instead of requiring the player to track whether or not it's allowed to send messages, and hard-coding specific messages to re-send later.
    
    Part of flutter/flutter#172763
    
    ## Pre-Review Checklist
    
    **Note**: The Flutter team is currently trialing the use of [Gemini Code Assist for GitHub](https://developers.google.com/gemini-code-assist/docs/review-github-code). Comments from the `gemini-code-assist` bot should not be taken as authoritative feedback from the Flutter team. If you find its comments useful you can update your code accordingly, but if you are unsure or disagree with the feedback, please feel free to wait for a Flutter team member's review for guidance on which automated comments should be addressed.
    
    [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
    stuartmorgan-g authored Jul 31, 2025
    Configuration menu
    Copy the full SHA
    fe53da2 View commit details
    Browse the repository at this point in the history
  2. [in_app_purchase_storekit] Updated comment (#9445)

    ### *Updated the comment refer to `StoreKit` instead of `Android`, in example/lib/main.dart*
    
    ### Before 
    ```dart
    void main() {
      WidgetsFlutterBinding.ensureInitialized();
      // When using the Android plugin directly it is mandatory to register
      // the plugin as default instance as part of initializing the app.
      InAppPurchaseStoreKitPlatform.registerPlatform();
    ```
    ### After
    ```dart
    void main() {
      WidgetsFlutterBinding.ensureInitialized();
      // When using the StoreKit plugin directly it is mandatory to register
      // the plugin as default instance as part of initializing the app.
      InAppPurchaseStoreKitPlatform.registerPlatform();
    ```
    
    ### Issue
    Closes flutter/flutter#159623
    
    ## Pre-Review Checklist
    
    [^1]: Regular contributors who have demonstrated familiarity with the repository guidelines only need to comment if the PR is not auto-exempted by repo tooling.
    avni-prajapati authored Jul 31, 2025
    Configuration menu
    Copy the full SHA
    b2aef15 View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2025

  1. Mark FlutterIOOverrides as final (#9719)

    In preparation for marking `IOOverrides` as `base`.
    
    Related to dart-lang/sdk#56468
    bkonyi authored Aug 1, 2025
    Configuration menu
    Copy the full SHA
    f0645d8 View commit details
    Browse the repository at this point in the history
Loading