Skip to content

Tags: douglasiacovelli/plugins

Tags

webview_flutter-v2.0.4

Toggle webview_flutter-v2.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[flutter_webview] Fix `allowsInlineMediaPlayback` ignored on iOS (flu…

…tter#3791)

in_app_purchase-v0.5.1+3

Toggle in_app_purchase-v0.5.1+3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[in_app_purchase] Configured example app to use StoreKit Testing on i…

…OS 14 (flutter#3772)

in_app_purchase-v0.5.1+2

Toggle in_app_purchase-v0.5.1+2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[in_app_purchase] improve readme (flutter#3731)

google_maps_flutter-v2.0.3

Toggle google_maps_flutter-v2.0.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[google_map_flutter] fix version (flutter#3790)

local_auth-v1.1.3

Toggle local_auth-v1.1.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[local_auth] Fix callback thread handling (flutter#3778)

Ensure that all auth replies, which are sent on an internal framework queue per documentation, are dispatched back to the main thread for handling, as all resulting operations (method channel callbacks, display of UI) are things that must be done on the main thread

In order to test this, sets up local_auth with XCTest-based tests, and adds the ability to inject a mock LAContext. (This does not do full unit test backfill, to limit the scope of the PR.)

Fixes flutter/flutter#47465

local_auth-v1.1.2

Toggle local_auth-v1.1.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[local_auth] Update Jetpack dependencies (flutter#3786)

The plugin was still using several beta version of Jetpack libraries
from 2 years ago. Updates to the latest stable version of each.

Fixes flutter/flutter#52742

video_player-v2.1.1

Toggle video_player-v2.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[video_player]Update README.me (flutter#3713)

google_maps_flutter_web-v0.3.0

Toggle google_maps_flutter_web-v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[google_maps_flutter_web] Migrate to null-safety. (flutter#3726)

* Updates JS-interop package to google_maps ^5.1.0
* Breaking changes:
  * The property `icon` of a `Marker` cannot be `null`. Defaults to `BitmapDescriptor.defaultMarker`
  * The property `initialCameraPosition` of a `GoogleMapController` can't be `null`. It is also marked as `required`.
  * The parameter `creationId` of the `buildView` method cannot be `null` (this should be handled internally for users of the plugin)
  * Most of the Controller methods can't be called after `remove`/`dispose`. Calling these methods now will throw an Assertion error. Before it'd be a no-op, or a null-pointer exception.

google_maps_flutter_platform_interface-v2.0.4

Toggle google_maps_flutter_platform_interface-v2.0.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[google_maps_flutter] Fix TileOverlay cloning (flutter#3771)

TileOverlay was not copying its TileProvider. During the NNBD migration,
map object updates were refactored to share code, and in that
refactoring TileOverlay update construction was aligned with other map
objects to use clones, so certain operations involving TileOverlays
started dropping the TileProvider.

Fixes flutter/flutter#77500

video_player-v2.1.0

Toggle video_player-v2.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[video_player] add http headers (flutter#3671)

This enables to pass HTTP headers to VideoPlayerController.network.

Fixes: flutter/flutter#16466