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
- Host: GitHub
- URL: https://github.com/adamlofts/angular_quill
- Owner: adamlofts
- License: bsd-3-clause
- Created: 2017-06-19T14:32:57.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-07T16:18:55.000Z (almost 5 years ago)
- Last Synced: 2025-02-28T07:12:20.963Z (7 months ago)
- Topics: angulardart, dart, quill, quilljs
- Language: CSS
- Size: 1.58 MB
- Stars: 20
- Watchers: 4
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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
```