You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a text input field with multiline and fixed height, but when content reaching to its height, it is not scrolling within the height like TextInput of React Native do. import { TextInput } from "react-native"; <TextInput multiline maxHeight={100} /> works perfect and scroll within when content reached to max height.
But!
import { TextField } from "react-native-material-textfield"; <TextInput multiline maxHeight={100} /> not working correctly.