Michael Goderbauer 4d9c3cc377
Always honor explicitly set keyboardType and inputAction for TextField (#20547)
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,
);
```
2018-08-15 11:35:49 -07:00
..
2018-06-19 17:22:56 -07:00
2018-08-09 18:23:36 -07:00
2018-08-09 18:23:36 -07:00
2018-05-24 23:16:16 -07:00