Yes
Yes
Environment:
OS: macOS High Sierra 10.13.3
Node: 9.5.0
Yarn: 1.3.2
npm: 5.6.0
Watchman: 4.9.0
Xcode: Xcode 9.2 Build version 9C40b
Android Studio: 3.0 AI-171.4443003
Packages: (wanted => installed)
react: 16.2.0 => 16.2.0
react-native: 0.53.3 => 0.53.3
react-native link).Get multiline input without scroll
Multiline input with scroll.

(1. Stardart font, 2-4. Custom fonts)
import React from "react";
import { View, TextInput } from "react-native";
const LOREM =
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco";
export default function App() {
return (
<View>
<TextInput value={LOREM} multiline />
<TextInput
style={{ fontFamily: "OpenSans-Bold" }}
value={LOREM}
multiline
/>
<TextInput
style={{ fontFamily: "Nunito-Regular" }}
value={LOREM}
multiline
/>
<TextInput
style={{ fontFamily: "DK Sugary Pancake" }}
value={LOREM}
multiline
/>
</View>
);
}
I also tried to set autoGrow={true} but resultis the same
Full code with fonts (fonts from google fonts, so they are free).
https://github.com/mxck/react-native-TextInput-multiline-bug
@facebook-github-bot label Android
Something went wrong executing that command, @hramos could you take a look?
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as "For Discussion" or "Good first issue" and I will leave it open. Thank you for your contributions.
+1
I had this same issue. Eventually, I figured out a work around by setting height larger or reducing font-size on the TextInput component.
Edit: use min-height if you want your TextInput to expand automatically
What makes it even worse is that scrollEnabled={false} doesn't remove the scroll either.
@rikur scrollEnabled is iOS setting only.
Also had the same issue. It looks like there's something wrong with the TextInput height calculation when mounting it with content and a custom font. The workaround in my case was to first render it empty and then set it's content.
+1
Here is my solutions
onContentSizeChange = (event: Object) => {
this.setState({ inputHeight: event.nativeEvent.contentSize.height })
}
...
multiline
onContentSizeChange={this.onContentSizeChange}
onChangeText={this.onChangeText}
onSelectionChange={this.onSelectionChange}
value={textFromInput}
autoCorrect
placeholder='Share something...'
underlineColorAndroid='transparent'
placeholderTextColor={colors.black}
style={[
styles.textInput,
{ height: Math.max(44, inputHeight) },
]}
onBlur={this.onBlur}
onFocus={this.onFocus}
scrollEnabled={false}
/>
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions.
Nope, still an issue
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions.
Still an issue.
+1
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions.
Still a bug
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions.
AFAIK, still a bug in latest RN.
Still a bug
On Wed, 19 Aug, 2020, 3:54 am Riku Raisanen, notifications@github.com
wrote:
AFAIK, still a bug in latest RN.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
https://github.com/facebook/react-native/issues/18132#issuecomment-675749772,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AGG2TEUHEG635KYI7FGEUSTSBL5SNANCNFSM4ESYS23A
.
@fabriziobertoglio1987 did you have a PR that addressed this?
Most helpful comment
+1