Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
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/plugins
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: c3ba213
Choose a base ref
...
head repository: flutter/plugins
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dfd1b6e
Choose a head ref
  • 4 commits
  • 38 files changed
  • 5 contributors

Commits on Jun 21, 2022

  1. [camera] Fix exception in registerWith (#6009)

    Fixes a regression from an unintented change in behavior during the
    conversion to an in-app method channel for Android and iOS. Although the
    Dart code for their implementations is almost identical to the shared
    method channel version, the differences in initialization paths caused
    the platform versions to try to use the widget bindings before they had
    been set up: The constructor for a `dartPluginClass` is called during
    `registerWith`, which is before `main`, but the constructor for the
    default implementation isn't called until `CameraPlatform.instance` is
    called, since Dart automatically does lazy static class initializtion.
    
    To avoid the issue without forcing bindings to be initialized early,
    this makes setting up the platform channel listener lazily.
    
    Fixes flutter/flutter#106236
    stuartmorgan-g authored Jun 21, 2022
    Configuration menu
    Copy the full SHA
    e868ca2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f33899d View commit details
    Browse the repository at this point in the history

Commits on Jun 22, 2022

  1. [webview]: Bump annotation from 1.0.0 to 1.4.0 in /packages/webview_f…

    …lutter/webview_flutter_android/android (#5992)
    
    * [webview]: Bump annotation
    
    Bumps annotation from 1.0.0 to 1.4.0.
    
    ---
    updated-dependencies:
    - dependency-name: androidx.annotation:annotation
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * version bump
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Maurice Parrish <[email protected]>
    dependabot[bot] and bparrishMines authored Jun 22, 2022
    Configuration menu
    Copy the full SHA
    41722ee View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    dfd1b6e View commit details
    Browse the repository at this point in the history
Loading