浅析 Flutter 与 iOS 的视图桥梁
PlatformView 提供了在 Flutter 的 Widget 层级中嵌入原生视图 (iOS/Android 等), PlatformView 在用来描述 iOS 平台是视图用的是 UIKitView,Android 平台的视图是 AndoirdView,本文所有描述都是针对 iOS 平台,按官方的描述该功能还是在发布预览阶段,并且是非常昂贵的操作;以下是官方 API 文档原文注释: Embedding UIViews is still in release preview, to enable the preview for an iOS app add a boolean field with the key 'io.flutter.embeddedviewspreview' and the value set to 'YES' to the application's Info.plist file. A list of open issued with embedding UIViews is available onGithub. Embedding iOS views...