mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
With this change you can now create "wrapping" text fields that do not show the new line button: ```dart new TextField( maxLines: null, keyboardType: TextInputType.text, ); ```