This repository was archived by the owner on Feb 25, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6k
Attach and position embedded UIVIews #6614
Merged
Merged
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,7 +13,9 @@ | |
| namespace shell { | ||
|
|
||
| FlutterPlatformViewsController::FlutterPlatformViewsController( | ||
| NSObject<FlutterBinaryMessenger>* messenger) { | ||
| NSObject<FlutterBinaryMessenger>* messenger, | ||
| FlutterView* flutter_view) | ||
| : flutter_view_([flutter_view retain]) { | ||
| channel_.reset([[FlutterMethodChannel alloc] | ||
| initWithName:@"flutter/platform_views" | ||
| binaryMessenger:messenger | ||
|
|
@@ -58,6 +60,9 @@ | |
| views_[viewId] = fml::scoped_nsobject<UIView>([[factory createWithFrame:CGRectZero | ||
| viewIdentifier:viewId | ||
| arguments:nil] retain]); | ||
|
|
||
| FlutterView* flutter_view = flutter_view_.get(); | ||
| [flutter_view addSubview:views_[viewId].get()]; | ||
| result(nil); | ||
| } | ||
|
|
||
|
|
@@ -72,6 +77,8 @@ | |
| return; | ||
| } | ||
|
|
||
| UIView* view = views_[viewId].get(); | ||
| [view removeFromSuperview]; | ||
| views_.erase(viewId); | ||
| result(nil); | ||
| } | ||
|
|
@@ -87,7 +94,15 @@ | |
|
|
||
| void FlutterPlatformViewsController::CompositeEmbeddedView(int view_id, | ||
| const flow::EmbeddedViewParams& params) { | ||
| // TODO(amirh): implement this. | ||
| // TODO(amirh): assert that this is running on the platform thread once we support the iOS | ||
| // embedded views thread configuration. | ||
| CGFloat screenScale = [[UIScreen mainScreen] scale]; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a threading assertion here that will trip if the threads are not the same?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Added a TODO, as for as long as we don't support the thread configuration it will make development a little annoying. |
||
| CGRect rect = | ||
| CGRectMake(params.offsetPixels.x() / screenScale, params.offsetPixels.y() / screenScale, | ||
| params.sizePoints.width(), params.sizePoints.height()); | ||
|
|
||
| UIView* view = views_[view_id]; | ||
| [view setFrame:rect]; | ||
| } | ||
|
|
||
| } // namespace shell | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lets add an equality check for the embedded view params and ask the view embedder to composite the same only if the equality check from the last frame changed.
It is fine to do this in a later patch with a TODO added here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added a TODO in FlutterPlatformViews.mm (to make sure we don't do anything if the params didn't change)