├── .gitignore ├── .metadata ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── .gitignore ├── .metadata ├── lib │ └── main.dart ├── pubspec.yaml └── web │ ├── favicon.png │ ├── icons │ ├── Icon-192.png │ └── Icon-512.png │ ├── index.html │ └── manifest.json ├── lib ├── flutter_mentions.dart └── src │ ├── annotation_editing_controller.dart │ ├── mention_view.dart │ ├── models.dart │ └── option_list.dart ├── pubspec.lock ├── pubspec.yaml └── test └── flutter_mentions_test.dart /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/.gitignore -------------------------------------------------------------------------------- /.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/.metadata -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/.metadata -------------------------------------------------------------------------------- /example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/lib/main.dart -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/web/icons/Icon-192.png -------------------------------------------------------------------------------- /example/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/web/icons/Icon-512.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/example/web/manifest.json -------------------------------------------------------------------------------- /lib/flutter_mentions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/lib/flutter_mentions.dart -------------------------------------------------------------------------------- /lib/src/annotation_editing_controller.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/lib/src/annotation_editing_controller.dart -------------------------------------------------------------------------------- /lib/src/mention_view.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/lib/src/mention_view.dart -------------------------------------------------------------------------------- /lib/src/models.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/lib/src/models.dart -------------------------------------------------------------------------------- /lib/src/option_list.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/lib/src/option_list.dart -------------------------------------------------------------------------------- /pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/pubspec.lock -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayeed/flutter_mentions/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/flutter_mentions_test.dart: -------------------------------------------------------------------------------- 1 | void main() {} 2 | --------------------------------------------------------------------------------