Native Mobile - iOS TextArea height

0
Hi All, We are using text area in a native mobile application. We are expecting 5 lines of height for the text area and it is rendering as expected in Android. Bui in iOS it is rendering as a single line height and, increases the height on entering next lines, How we can increase the height while initial rendering itself in iOS. PFB different screenshots Studio Pro : Android : iOS : Initial Rendering iOS : On filling data In Mendix Documentation it is mentioned as below, So Mendix not supports to set the height in iOS. Is there any alternative way to do it?
asked
1 answers
0

Added a custom styling to to set the input height worked for me, Just posting it since might be useful for someone else

export const customTextArea = {

    input: {

        // All ViewStyle properties are allowed

        height: 150

    },

};

answered