Maurice Parrish
Maurice Parrish
This is a mistake. Thanks for pointing this out! This will be fixed by https://github.com/flutter/plugins/pull/6877
@ken-salterdiazsolutions It looks like you just need to enable third party cookies on Android. ```dart import 'package:webview_flutter_android/webview_flutter_android.dart'; final AndroidWebViewCookieManager cookieManager = WebViewCookieManager().platform as AndroidWebViewCookieManager; cookieManager.setAcceptThirdPartyCookies( myWebViewController.platform as AndroidWebViewController, true); ```
closing in favor of https://github.com/flutter/packages/pull/6378
@acoutts You can go ahead and create a separate PR that updates only the `camera_platform_interface` package.
@acoutts You should create the PR for `camera_android` first. It ensures the feature is available when it is added to `camera`.
Looks like you will also need to bump the version another time. cc @stuartmorgan For a quick secondary review.
This doc is a little old, but may be helpful: https://docs.google.com/document/d/1OKqAJ5rG_HPafO_E83-INtnwAKhoBuklyuJG_vauXHs/edit?usp=sharing
@TheVinhLuong Needing a delay does seem weird. It could have to do something with an async object creation. Are you seeing any error messages? Could you verify the Objective-C code...
I think I see the issue. The `UIScrollView` only has a weak reference to the `UIScrollViewDelegate`: https://developer.apple.com/documentation/uikit/uiscrollview/1619430-delegate?language=objc There's a good chance it could be getting garbage collected based on the...
@TheVinhLuong Merging in main now should fix the failing checks.