For information on using platform views in a Flutter app, see the documentation for Android, iOS, and macOS.
Hybrid Composition (HC) refers to a method of composing native views (for example, a native webview) alongside Flutter widgets. On Android, it is one of several modes for displaying platform views; see Android Platform Views for an overview of modes. On iOS and macOS, it is the only mode used for displaying platform views.
HC creates multiple layers of native views that are composited by the standard platform UI toolkit rather than by Flutter. This requires separating the Flutter rendering into separate views, one containing the things that are behind the native view, and another things above the native view, so that everything looks correct when composited by the system.
Because it involves coordinating multiple native views, it adds complexity to the rendering pipeline (requiring synchronization between OS rendering and Flutter rendering to avoid tearing) and event handling such as gesture resolution.
To see all known issues specific to this mode on Android, search for the platform-views: hc label.