21
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

FlutterのTextFieldで複数行テキストを入力するようにする

Posted at

FlutterのTextFieldはデフォルトでは改行ができなくなっています。

mojikyo45_640-2.gif

TextField(
   decoration: InputDecoration(
     hintText: "Comment ✍️",
     focusedBorder: _inputBorder,
     enabledBorder: _inputBorder,
   ),
),

複数行入力できるようにする

下記の二つを追加します。

keyboardType: TextInputType.multiline,
maxLines: null,
mojikyo45_640-2.gif

TextField(
   keyboardType: TextInputType.multiline,
   maxLines: null,
   decoration: InputDecoration(
     hintText: "Comment ✍️",
     focusedBorder: _inputBorder,
     enabledBorder: _inputBorder,
   ),
),

以上です。

21
12
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
21
12

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?