Last active
August 22, 2018 14:47
-
-
Save kwmt/2cdaebf8ffe8f8453b1e9ea0beca8b34 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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