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 bc10d6cf05 Prepare to release 9.2.0 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 refactor: Rename pubspec_overrides.yaml.g to pubspec_overrides.yaml.disabled 1 year ago
.test_config Configure flutter_quill_test as testing package 1 year ago
CHANGELOG.md Prepare to release 9.2.0 1 year ago
LICENSE New patch 1 year ago
README.md Update README.md 1 year ago
analysis_options.yaml New patch 1 year ago
pubspec.yaml Prepare to release 9.2.0 1 year ago
pubspec_overrides.yaml.disabled refactor: Rename pubspec_overrides.yaml.g to pubspec_overrides.yaml.disabled 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.