0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

[Flutter] TextFieldの高さをSizeBox以外で変更

Posted at

スクリーンショット 2024-07-11 10.42.41.png
スクリーンショット 2024-07-11 10.42.49.png

わかりにくくなるので、バリデーション部分は消してあります。

  TextFormField(
    decoration: InputDecoration(
      //下記2行追加
      isDense: true,
      contentPadding: const EdgeInsets.all(12),
    ),
  ),

Sizeboxだとバリデーションをかけた時にテキストが表示され、テキストフィールド部分の高さが変わってしまいアドバイスもらったところこんなやり方あるよということで教わりました。

バリデーションの際に、テキストフィールドの高さ変わって欲しくないんだよなあ
でも通常の高さは嫌なんだよなあ
なんて方は参考にしてもらえたら幸いです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?