-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Closed
Labels
a: platform-viewsEmbedding Android/iOS views in Flutter appsEmbedding Android/iOS views in Flutter appsengineflutter/engine related. See also e: labels.flutter/engine related. See also e: labels.found in release: 1.20Found to occur in 1.20Found to occur in 1.20has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onplatform-iosiOS applications specificallyiOS applications specifically
Description
Hi Flutter Teams,
I have a problem with UiKitView in my app.
When I put UiKitView and a Container inside Stack, the UiKitView is always in front of the Container. This just happen in iOS. I dont know why, please help me this case.
Example code :
return MaterialApp(
home: Scaffold(
appBar : AppBar(
title: Text('Platform View'),
),
body: Stack(
children: <Widget>[
UiKitView(
viewType: 'NativeView',
),
Container(height: 100,width: 100,color: Colors.red,) //Container is stacked by UiKitView
],
),
),
);
tomalabaster
Metadata
Metadata
Assignees
Labels
a: platform-viewsEmbedding Android/iOS views in Flutter appsEmbedding Android/iOS views in Flutter appsengineflutter/engine related. See also e: labels.flutter/engine related. See also e: labels.found in release: 1.20Found to occur in 1.20Found to occur in 1.20has reproducible stepsThe issue has been confirmed reproducible and is ready to work onThe issue has been confirmed reproducible and is ready to work onplatform-iosiOS applications specificallyiOS applications specifically