Skip to content

Commit fcbb97b

Browse files
committed
[Text] Get the system font instead of Helvetica programmatically.
Summary: Get the system font instead of Helvetica programmatically.
1 parent 0c8de68 commit fcbb97b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Libraries/Text/RCTTextView.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ - (BOOL)canBecomeFirstResponder
218218

219219
- (UIFont *)defaultPlaceholderFont
220220
{
221-
return [UIFont fontWithName:@"Helvetica" size:17];
221+
return [UIFont systemFontOfSize:17];
222222
}
223223

224224
- (UIColor *)defaultPlaceholderTextColor

0 commit comments

Comments
 (0)