We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d00c0f commit 3836c1bCopy full SHA for 3836c1b
Libraries/Text/TextInput/Multiline/RCTMultilineTextInputView.m
@@ -106,7 +106,9 @@ - (void)setEnableFocusRing:(BOOL)enableFocusRing {
106
- (void)scrollViewDidScroll:(RCTUIScrollView *)scrollView // TODO(macOS ISS#3536887)
107
{
108
RCTDirectEventBlock onScroll = self.onScroll;
109
-
+#if TARGET_OS_OSX // [TODO(macOS GH#774)
110
+ [_scrollView setHasVerticalScroller:YES];
111
+#endif // ]TODO(macOS GH#774)
112
if (onScroll) {
113
CGPoint contentOffset = scrollView.contentOffset;
114
CGSize contentSize = scrollView.contentSize;
0 commit comments