Skip to content

Instantly share code, notes, and snippets.

@kwmt
Last active August 22, 2018 14:47
Show Gist options
  • Save kwmt/2cdaebf8ffe8f8453b1e9ea0beca8b34 to your computer and use it in GitHub Desktop.
Save kwmt/2cdaebf8ffe8f8453b1e9ea0beca8b34 to your computer and use it in GitHub Desktop.
final _textEditingController = TextEditingController();
int _maxLines;
@override
void initState() {
super.initState();
_textEditingController.addListener(_textEditListener);
}
@override
void dispose() {
_textEditingController.removeListener(_textEditListener);
_textEditingController.dispose();
super.dispose();
}
// TextFieldになにか変更があったら呼ばれる
void _textEditListener() {
setState(() {
// TextFieldに改行が2つ以上入っていたら、3行以上になるので、3行までに止める。
_maxLines = '\n'.allMatches(_textEditingController.text).length >= 2 ? 3 : null;
});
}
Widget textField = Expanded(
child: new TextFormField(
controller: _textEditingController,
decoration: const InputDecoration(
hintText: 'Enter a message',
),
maxLines: _maxLines,
keyboardType: TextInputType.multiline,
textInputAction: TextInputAction.newline,
),
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment