flutter 부모크기에 반응하는 TextFormField 설정

ENOOSOFT·2022년 7월 18일
0
...
Expanded( //expand parent
    child: Column(
        children: [
            Expanded( //expand itself
                child: TextFormField(
                controller: rstTxtController,
...
                minLines: null, //min to null
                maxLines: 999, //max to max
                keyboardType: TextInputType.multiline,
            ),
...
profile
Tiny coder

0개의 댓글