Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

upgrade to file_picker 8.0.3 #192

Open
wants to merge 7 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 2.2.10

- Updated the http dependency version

### 2.2.9

- Updated the file_picker dependency version

### 2.2.8

- Updated all dependencies to their latest versions
Expand Down
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
![Pub Version](https://img.shields.io/pub/v/quill_html_editor) ![GitHub](https://img.shields.io/github/license/the-airbender/quill_html_editor) ![Pub Points](https://img.shields.io/pub/points/quill_html_editor) ![Pub Popularity](https://img.shields.io/pub/popularity/quill_html_editor)
# Quill HTML Editor V2

This is a clone of the [quill_html_editor](https://pub.dev/packages/quill_html_editor) package, which has not been updated for a long period of time. This package includes various updates and improvements to enhance functionality and performance.



# Quill Html Editor

Quill Html Editor is a powerful HTML rich text editor designed for Android, iOS, and Web platforms. It leverages the capabilities of the QuillJs library, an open-source WYSIWYG editor, to provide a feature-rich editing experience for modern web applications.

Expand Down Expand Up @@ -51,10 +52,10 @@ width="600" alt="1" src="https://i.imgur.com/3PrFsZU.png">
## Documentation
See the API documentation for details on the following topics:

- [Getting started](https://github.com/the-airbender/quill_html_editor/tree/main/doc/get-started.md)
- [Quill Html Editor Usage](https://github.com/the-airbender/quill_html_editor/tree/main/doc/quill-html-editor-setup.md)
- [Quill Controller Usage](https://github.com/the-airbender/quill_html_editor/tree/main/doc/quill-editor-controller-setup.md)
- [ToolBar Usage](https://github.com/the-airbender/quill_html_editor/tree/main/doc/toolbar-setup.md)
- [Getting started](https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/get-started.md)
- [Quill Html Editor Usage](https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/quill-html-editor-setup.md)
- [Quill Controller Usage](https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/quill-editor-controller-setup.md)
- [ToolBar Usage](https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/toolbar-setup.md)



Expand Down
16 changes: 8 additions & 8 deletions doc/get-started.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
To get started, follow the [package installation
instructions](https://pub.dev/packages/quill_html_editor/install) and add QuillHtmlEditor to your app:
instructions](https://pub.dev/packages/quill_html_editor_v2/install) and add QuillHtmlEditor to your app:

For more customization, the **QuillHtmlEditor** and **ToolBar** are completely detached. We can define both widgets separately as shown below.

Expand All @@ -8,7 +8,7 @@ For more customization, the **QuillHtmlEditor** and **ToolBar** are completely d
#### `QuillHtmlEditor` with required parameters

```dart
import 'package:quill_html_editor/quill_html_editor.dart';
import 'package:quill_html_editor_v2/quill_html_editor.dart';

// Editor widget with required parameters
QuillHtmlEditor(
Expand All @@ -21,7 +21,7 @@ import 'package:quill_html_editor/quill_html_editor.dart';
#### `QuillHtmlEditor` with all available parameters

```dart
import 'package:quill_html_editor/quill_html_editor.dart';
import 'package:quill_html_editor_v2/quill_html_editor.dart';

// With all available parameters
QuillHtmlEditor(
Expand Down Expand Up @@ -49,7 +49,7 @@ import 'package:quill_html_editor/quill_html_editor.dart';


```dart
import 'package:quill_html_editor/quill_html_editor.dart';
import 'package:quill_html_editor_v2/quill_html_editor.dart';
// With required parameters
ToolBar(
controller: controller
Expand All @@ -60,7 +60,7 @@ import 'package:quill_html_editor/quill_html_editor.dart';


```dart
import 'package:quill_html_editor/quill_html_editor.dart';
import 'package:quill_html_editor_v2/quill_html_editor.dart';
// With required parameters
ToolBar(
controller: controller,
Expand All @@ -81,6 +81,6 @@ import 'package:quill_html_editor/quill_html_editor.dart';
For a complete sample, see the [Getting started sample][] in the example directory.
For more on how to configure [QuillHtmlEditor] and [Toolbar].

[Getting started sample]: https://github.com/the-airbender/quill_html_editor/blob/main/example/lib/main.dart
[QuillHtmlEditor]: https://github.com/the-airbender/quill_html_editor/tree/main/doc/quill-html-editor-setup.md
[Toolbar]: https://github.com/the-airbender/quill_html_editor/tree/main/doc/toolbar-setup.md
[Getting started sample]: https://github.com/the-airbender/quill_html_editor_v2/blob/main/example/lib/main.dart
[QuillHtmlEditor]: https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/quill-html-editor-setup.md
[Toolbar]: https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/toolbar-setup.md
6 changes: 3 additions & 3 deletions doc/quill-editor-controller-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,8 @@ Method to dispose the controller

For a complete sample, see the [Getting started sample][] in the example directory.

[Getting started sample]: https://github.com/the-airbender/quill_html_editor/blob/main/example/lib/main.dart
[Getting started sample]: https://github.com/the-airbender/quill_html_editor_v2/blob/main/example/lib/main.dart

[Getting Started]: https://github.com/the-airbender/quill_html_editor/tree/main/doc/get-started.md
[Getting Started]: https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/get-started.md

[QuillHtmlEditor]: https://github.com/the-airbender/quill_html_editor/tree/main/doc/quill-html-editor-setup.md
[QuillHtmlEditor]: https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/quill-html-editor-setup.md
6 changes: 3 additions & 3 deletions doc/quill-html-editor-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ Quill Editor, supports copy pasting the formatted text from other sources, you c

For a complete sample, see the [Getting started sample][] in the example directory.

[Getting started sample]: https://github.com/the-airbender/quill_html_editor/blob/main/example/lib/main.dart
[Getting started sample]: https://github.com/the-airbender/quill_html_editor_v2/blob/main/example/lib/main.dart

[QuillEditorController]: https://github.com/the-airbender/quill_html_editor/tree/main/doc/quill-editor-controller-setup.md
[QuillEditorController]: https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/quill-editor-controller-setup.md

[Getting Started]: https://github.com/the-airbender/quill_html_editor/tree/main/doc/get-started.md
[Getting Started]: https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/get-started.md

6 changes: 3 additions & 3 deletions doc/toolbar-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ ToolBar widget is optional and is completely isolated from the Editor widget, wh

For a complete sample, see the [Getting started sample][] in the example directory.

[Getting started sample]: https://github.com/the-airbender/quill_html_editor/blob/main/example/lib/main.dart
[Getting started sample]: https://github.com/the-airbender/quill_html_editor_v2/blob/main/example/lib/main.dart


[QuillEditorController]: https://github.com/the-airbender/quill_html_editor/tree/main/doc/quill-editor-controller-setup.md
[QuillEditorController]: https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/quill-editor-controller-setup.md


[Getting Started]: https://github.com/the-airbender/quill_html_editor/tree/main/doc/get-started.md
[Getting Started]: https://github.com/the-airbender/quill_html_editor_v2/tree/main/doc/get-started.md

2 changes: 1 addition & 1 deletion example/lib/main.dart
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import 'dart:convert';

import 'package:flutter/material.dart';
import 'package:quill_html_editor/quill_html_editor.dart';
import 'package:quill_html_editor_v2/quill_html_editor.dart';

void main() async {
WidgetsFlutterBinding.ensureInitialized();
Expand Down
Loading