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.
 
 
 
 
 
singerdmx 008d262b70 chore(version): update to version 10.4.1 7 months ago
..
lib Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
test Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
.gitignore Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
.metadata Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
.pubignore Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
.test_config Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
CHANGELOG.md chore(version): update to version 10.4.1 7 months ago
LICENSE Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
README.md Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
analysis_options.yaml Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago
pubspec.yaml chore(version): update to version 10.4.1 7 months ago
pubspec_overrides.yaml.disabled Revert "revert: move sub packages to `./packages`" (#1717) 1 year ago

README.md

Flutter Quill Test

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

Table of Contents

Installation

Run the command in your project root folder:

dart pub add dev:flutter_quill_test

Example of how it will look 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_test/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.