framework7io / framework7

Full featured HTML framework for building iOS & Android apps
http://framework7.io
MIT License
18.15k stars 3.23k forks source link

The height of textarea cannot be adjusted according to the default value #4294

Open gaohomway opened 1 month ago

gaohomway commented 1 month ago

"framework7": "^7.1.5", "framework7-react": "^7.1.5",

I have set the default value for textarea, but the height of textarea has not been turned on and is still the default height. Is there any way to adjust the height according to the content?


<ListInput
        label="运动介绍"
        placeholder="运动介绍..."
        type="textarea"
        resizable
        defaultValue={introduce}
        inputStyle={{ minHeight: 512 }}
        onChange={(event) => setIntroduce(event.target.value)}
    />