Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set numberOfLines for Android text input (#2238)

* Set numberOfLines for Android text input

* Let's go with 4

authored by

Eric Bailey and committed by
GitHub
699749cb d05658f2

+7 -1
+7 -1
src/view/com/composer/text-input/TextInput.tsx
··· 215 215 autoFocus={true} 216 216 allowFontScaling 217 217 multiline 218 - style={[pal.text, styles.textInput, styles.textInputFormatting]} 218 + numberOfLines={4} 219 + style={[ 220 + pal.text, 221 + styles.textInput, 222 + styles.textInputFormatting, 223 + {textAlignVertical: 'top'}, 224 + ]} 219 225 {...props}> 220 226 {textDecorated} 221 227 </PasteInput>