Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## [2.0.2] 15 Oct 2021
- `FlutterMentions.maxLines` is now nullable to be compatible with (TextField.maxLines)[https://api.flutter.dev/flutter/cupertino/CupertinoTextField/maxLines.html]

## [2.0.1] - 24 May 2021

- Added support for Flutter 2.2.0
Expand Down
2 changes: 1 addition & 1 deletion lib/src/mention_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class FlutterMentions extends StatefulWidget {
final bool enableSuggestions;

/// {@macro flutter.widgets.editableText.maxLines}
final int maxLines;
final int? maxLines;

/// {@macro flutter.widgets.editableText.minLines}
final int? minLines;
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_mentions
description: A simple flutter input widget to add @ mentions functionality to your app.
version: 2.0.1
version: 2.0.2
homepage: https://github.com/fayeed/flutter_mentions

environment:
Expand Down