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.
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.