An open API service indexing awesome lists of open source software.

https://github.com/adamlofts/angular_quill

Angular dart component for the Quill rich text editor
https://github.com/adamlofts/angular_quill

angulardart dart quill quilljs

Last synced: 7 months ago
JSON representation

Angular dart component for the Quill rich text editor

Awesome Lists containing this project

README

          

# Angular Quill

An angular dart component for the Quill rich text editor

## [See it in action](https://adamlofts.github.io/angular_quill_example/build/web/index.html)

Visit https://adamlofts.github.io/angular_quill_example/build/web/index.html

And view the corresponding [example source code](https://github.com/adamlofts/angular_quill_example/blob/master/web/app_component.html).

## Usage

Add the dependency to pub:

```yaml
dependencies:
angular_quill:
```

Add the component to your template

```html

```

Add `quillDirectives` to the directives on your app component

```dart
@Component(
selector: 'my-app',
templateUrl: 'app_component.html',
directives: const [COMMON_DIRECTIVES, quillDirectives],
)
class AppComponent {}

```

Include Quill JS and css files in your app html.

```html




```