-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
Current behaviour
When height property is set on an outlined input, it becomes scrollable when focused
Edit: only happens on Android
Expected behaviour
TextInput should not be scrollable
Code sample
`import * as React from 'react';
import {TextInput} from 'react-native-paper';
export default function App() {
return (
<TextInput
style={{marginTop: 24, height: 40}}
mode='outlined'
placeholder='This placeholder will scroll when focused'
/>
);
}`
Screenshots (if applicable)
What have you tried
Your Environment
| software | version |
|---|---|
| ios or android | |
| react-native | "4.13.0" |
| react-native-paper | "^4.8.1" |
| node | "14.7.0" |
| npm or yarn | "7.12.0" |
| expo sdk | "3.24.0" |
Snack that reproduces the issue:
https://snack.expo.io/6tTczRnvw
mehdinourollah and ffkraemer
