diff --git a/Libraries/Text/TextInput/RCTInputAccessoryViewContent.m b/Libraries/Text/TextInput/RCTInputAccessoryViewContent.m index 73ec648ad..5a9f142c6 100644 --- a/Libraries/Text/TextInput/RCTInputAccessoryViewContent.m +++ b/Libraries/Text/TextInput/RCTInputAccessoryViewContent.m @@ -27,18 +27,13 @@ { #if defined(__IPHONE_OS_VERSION_MAX_ALLOWED) && __IPHONE_OS_VERSION_MAX_ALLOWED >= 110000 /* __IPHONE_11_0 */ - // Avoid the home pill (in portrait mode) and notch (in landscape mode) on iPhoneX. + // Avoid the home pill (in portrait mode) + // TODO: Support rotation, anchor to left and right without breaking frame x coordinate (T27974328). if (@available(iOS 11.0, *)) { if (self.window) { [_safeAreaContainer.bottomAnchor constraintLessThanOrEqualToSystemSpacingBelowAnchor:self.window.safeAreaLayoutGuide.bottomAnchor multiplier:1.0f].active = YES; - [_safeAreaContainer.leftAnchor - constraintGreaterThanOrEqualToSystemSpacingAfterAnchor:self.window.safeAreaLayoutGuide.leftAnchor - multiplier:1.0f].active = YES; - [_safeAreaContainer.rightAnchor - constraintLessThanOrEqualToSystemSpacingAfterAnchor:self.window.safeAreaLayoutGuide.rightAnchor - multiplier:1.0f].active = YES; } } #endif