This repository was archived by the owner on Feb 25, 2025. It is now read-only.
File tree 3 files changed +3
-3
lines changed
shell/platform/darwin/ios/framework/Source
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1008,7 +1008,7 @@ - (void)flutterTextInputViewDidResignFirstResponder:(FlutterTextInputView*)textI
1008
1008
// Have to check in the next run loop, because iOS requests the previous first responder to
1009
1009
// resign before requesting the next view to become first responder.
1010
1010
dispatch_async (dispatch_get_main_queue (), ^(void ) {
1011
- long platform_view_id = self.platformViewsController ->findFirstResponderPlatformViewId ();
1011
+ long platform_view_id = self.platformViewsController ->FindFirstResponderPlatformViewId ();
1012
1012
if (platform_view_id == -1 ) {
1013
1013
return ;
1014
1014
}
Original file line number Diff line number Diff line change @@ -342,7 +342,7 @@ - (BOOL)hasFirstResponderInViewHierarchySubtree {
342
342
return [touch_interceptors_[view_id].get () embeddedView ];
343
343
}
344
344
345
- long FlutterPlatformViewsController::findFirstResponderPlatformViewId () {
345
+ long FlutterPlatformViewsController::FindFirstResponderPlatformViewId () {
346
346
for (auto const & [id , root_view] : root_views_) {
347
347
if ([(UIView*)root_view.get () hasFirstResponderInViewHierarchySubtree ]) {
348
348
return id ;
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ class FlutterPlatformViewsController {
179
179
180
180
// Returns the platform view id if the platform view (or any of its descendant view) is the first
181
181
// responder. Returns -1 if no such platform view is found.
182
- long findFirstResponderPlatformViewId ();
182
+ long FindFirstResponderPlatformViewId ();
183
183
184
184
private:
185
185
static const size_t kMaxLayerAllocations = 2 ;
You can’t perform that action at this time.
0 commit comments