diff --git a/Libraries/Text/TextInput/Singleline/RCTUITextField.m b/Libraries/Text/TextInput/Singleline/RCTUITextField.m index 032a54aeb..92db734ce 100644 --- a/Libraries/Text/TextInput/Singleline/RCTUITextField.m +++ b/Libraries/Text/TextInput/Singleline/RCTUITextField.m @@ -122,6 +122,11 @@ effectiveTextAttributes[NSKernAttributeName] = @(_reactTextAttributes.letterSpacing); } + NSParagraphStyle *paragraphStyle = [_reactTextAttributes effectiveParagraphStyle]; + if (paragraphStyle) { + effectiveTextAttributes[NSParagraphStyleAttributeName] = paragraphStyle; + } + return [effectiveTextAttributes copy]; }