文件最后提交记录最后更新时间
[camera] Add API support query for image streaming (#8250) Add API support query, supportsImageStreaming for checking if the camera platform supports image streaming. As requested on this comment: https://github.com/flutter/packages/pull/8234#discussion_r1871232301 Attempting to follow the [contribution guide wrt. changing federated plugins](https://github.com/flutter/flutter/blob/master/docs/ecosystem/contributing/README.md#changing-federated-plugins). There is no issue to link to, but should I create one?1 年前
[camera] Update iOS Pigeon for non-nullable generics (#7787) Updates the Pigeon definition to uses non-nullable generics now that it's possible. Allows removing a force-unwrap now that the correct type is expressed in the definition. Part of https://github.com/flutter/flutter/issues/1558911 年前
remove unnecessary typed_data imports (#4136) Removed all the unnecessary commented out typed_data import ignore Fixes [Issue #128140](https://github.com/flutter/flutter/issues/128140)2 年前
[camera] Finish converting iOS to Pigeon (#6601) Converts all remaining Dart->host communication in the iOS implementation to use Pigeon. Given the boilerplate nature of many of the changes, it seemed easiest to just do the remaining calls all at once now that the structure is in place. Some high-level notes: - Many methods used to send the cameraId without it ever being used on the native side, so the Pigeon versions do not send them. - ThreadSafeTextureRegistry is removed because I discovered that it was masking a bug, so was more trouble than it was worth (see inline comments in PR). - A number of enums have been removed in favor of using the Pigeon-generated enums to pass data from the plugin class to FLTCam. - In many cases where the completion callback (previously result) was being passed to FLTCam in a call, only to have it always just call result(nil), that's now done in the plugin class since it's easier to reason about completions being called when they aren't passed around. (Long term we should consider moving almost all of the rest out, and using FlutterError* out params that the plugin class passes to completion, but that is more surgery than I wanted to do in this PR.) Completes the iOS portion of https://github.com/flutter/flutter/issues/1179052 年前