Rich text editor for Flutter
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Ellet db406d4b01
Update CHANGELOG and pubspec.yaml
1 year ago
..
lib New patch 1 year ago
test New patch 1 year ago
.gitignore Move flutter_quill_test to seperated package (#1507) 1 year ago
.metadata Move flutter_quill_test to seperated package (#1507) 1 year ago
.pubignore Update flutter_quill_extensions 1 year ago
.test_config Configure flutter_quill_test as testing package 1 year ago
CHANGELOG.md Update CHANGELOG and pubspec.yaml 1 year ago
LICENSE New patch 1 year ago
README.md First step of improving the quill editor (#1510) 1 year ago
analysis_options.yaml New patch 1 year ago
pubspec.yaml Update CHANGELOG and pubspec.yaml 1 year ago
pubspec_overrides.yaml.g First step of improving the quill editor (#1510) 1 year ago

README.md

Flutter Quill Test

Test utilities for flutter_quill which includes methods to simplify interacting with the editor in test cases.

Installation

Run the command in your project root folder:

dart pub add dev:flutter_quill_test

Example of how it will looks like:

dev_dependencies:
  flutter_quill_test: any # Use latest Version
  flutter_lints: any
  flutter_test:
    sdk: flutter

Testing

To aid in testing applications using the editor an extension to the flutter WidgetTester is provided which includes methods to simplify interacting with the editor in test cases.

Import the test utilities in your test file:

import 'package:flutter_quill/flutter_quill_test.dart';

and then enter text using quillEnterText:

await tester.quillEnterText(find.byType(QuillEditor), 'test\n');

Contributing

We welcome contributions!

Please follow these guidelines when contributing to our project. See CONTRIBUTING.md for more details.

License

This project is licensed under the MIT License - see the LICENSE file for details.