LoginSignup
19
10

More than 3 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,
   ),
),

以上です。

19
10
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
19
10