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 e9f8381 commit bc183b6Copy full SHA for bc183b6
Libraries/Text/TextInput/Singleline/RCTSinglelineTextInputView.m
@@ -28,6 +28,10 @@ - (instancetype)initWithBridge:(RCTBridge *)bridge
28
29
_backedTextInputView = [[RCTUITextField alloc] initWithFrame:self.bounds];
30
_backedTextInputView.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight;
31
+#if TARGET_OS_OSX // [TODO(macOS GH#774)
32
+ _backedTextInputView.cell.scrollable = YES;
33
+ _backedTextInputView.cell.usesSingleLineMode = YES;
34
+#endif // ]TODO(macOS GH#774)
35
_backedTextInputView.textInputDelegate = self;
36
37
[self addSubview:_backedTextInputView];
0 commit comments