This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree 2 files changed +1
-9
lines changed
2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -278,13 +278,6 @@ class RenderAndroidView extends PlatformViewRenderBox {
278
278
279
279
/// A render object for an iOS UIKit UIView.
280
280
///
281
- /// {@template flutter.rendering.RenderUiKitView}
282
- /// Embedding UIViews is still preview-quality. To enable the preview for an iOS app add a boolean
283
- /// field with the key 'io.flutter.embedded_views_preview' and the value set to 'YES' to the
284
- /// application's Info.plist file. A list of open issued with embedding UIViews is available on
285
- /// [Github] (https://github.com/flutter/flutter/issues?q=is%3Aopen+is%3Aissue+label%3A%22a%3A+platform-views%22+label%3Aplatform-ios+sort%3Acreated-asc)
286
- /// {@endtemplate}
287
- ///
288
281
/// [RenderUiKitView] is responsible for sizing and displaying an iOS
289
282
/// [UIView] (https://developer.apple.com/documentation/uikit/uiview).
290
283
///
Original file line number Diff line number Diff line change @@ -202,8 +202,6 @@ class AndroidView extends StatefulWidget {
202
202
// TODO(ychris): remove the documentation for conic path not supported once https://github.com/flutter/flutter/issues/35062 is resolved.
203
203
/// Embeds an iOS view in the Widget hierarchy.
204
204
///
205
- /// {@macro flutter.rendering.RenderUiKitView}
206
- ///
207
205
/// Embedding iOS views is an expensive operation and should be avoided when a Flutter
208
206
/// equivalent is possible.
209
207
///
@@ -216,6 +214,7 @@ class AndroidView extends StatefulWidget {
216
214
/// Construction of UIViews is done asynchronously, before the UIView is ready this widget paints
217
215
/// nothing while maintaining the same layout constraints.
218
216
///
217
+ /// Clipping operations on a UiKitView can result slow performance.
219
218
/// If a conic path clipping is applied to a UIKitView,
220
219
/// a quad path is used to approximate the clip due to limitation of Quartz.
221
220
class UiKitView extends StatefulWidget {
You can’t perform that action at this time.
0 commit comments