pull/1036/head
Cierra_Runis 2 years ago committed by GitHub
parent fb26c842ff
commit d22e46b758
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 94
      README.md
  2. 264
      doc_cn.md
  3. 59
      lib/src/translations/toolbar.i18n.dart

@ -1,4 +1,4 @@
<p align="center">
<p align="center" style="background-color:#282C34">
<img src="https://user-images.githubusercontent.com/10923085/119221946-2de89000-baf2-11eb-8285-68168a78c658.png" width="600px">
</p>
<h1 align="center">A rich text editor for Flutter</h1>
@ -20,20 +20,37 @@
[github-forks-badge]: https://img.shields.io/github/forks/singerdmx/flutter-quill.svg?style=for-the-badge&logo=github&logoColor=ffffff
[github-forks-link]: https://github.com/singerdmx/flutter-quill/network/members
[中文文档](./doc_cn.md)
---
FlutterQuill is a rich text editor and a [Quill] component for [Flutter].
This library is a WYSIWYG editor built for the modern mobile platform, with web compatibility under development. Check out our [Youtube Playlist] or [Code Introduction] to take a detailed walkthrough of the code base. You can join our [Slack Group] for discussion.
Demo App: https://bulletjournal.us/home/index.html
Demo App: [BULLET JOURNAL](https://bulletjournal.us/home/index.html)
Pub: [FlutterQuill]
Pub: https://pub.dev/packages/flutter_quill
## Presentations
<p float="left">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/103142422-9bb19c80-46b7-11eb-83e4-dd0538a9236e.png">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/103142455-0531ab00-46b8-11eb-89f8-26a77de9227f.png">
</p>
<p float="left">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/102963021-f28f5a00-449c-11eb-8f5f-6e9dd60844c4.png">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/102977404-c9c88e00-44b7-11eb-9423-b68f3b30b0e0.png">
</p>
---
## Usage
See the `example` directory for a minimal example of how to use FlutterQuill. You typically just need to instantiate a controller:
```
```dart
QuillController _controller = QuillController.basic();
```
@ -54,6 +71,7 @@ Column(
],
)
```
Check out [Sample Page] for advanced usage.
## Input / Output
@ -63,9 +81,9 @@ This library uses [Quill] as an internal data format.
* Use `_controller.document.toDelta()` to extract the deltas.
* Use `_controller.document.toPlainText()` to extract plain text.
FlutterQuill provides some JSON serialisation support, so that you can save and open documents. To save a document as JSON, do something like the following:
FlutterQuill provides some JSON serialization support, so that you can save and open documents. To save a document as JSON, do something like the following:
```
```dart
var json = jsonEncode(_controller.document.toDelta().toJson());
```
@ -73,11 +91,12 @@ You can then write this to storage.
To open a FlutterQuill editor with an existing JSON representation that you've previously stored, you can do something like this:
```
```dart
var myJSON = jsonDecode(incomingJSONText);
_controller = QuillController(
document: Document.fromJson(myJSON),
selection: TextSelection.collapsed(offset: 0));
selection: TextSelection.collapsed(offset: 0),
);
```
## Web
@ -93,30 +112,36 @@ It is required to provide `filePickImpl` for toolbar image button, e.g. [Sample
## Configuration
The `QuillToolbar` class lets you customise which formatting options are available.
The `QuillToolbar` class lets you customize which formatting options are available.
[Sample Page] provides sample code for advanced usage and configuration.
### Font Size
Within the editor toolbar, a drop-down with font-sizing capabilities is available. This can be enabled or disabled with `showFontSize`.
Within the editor toolbar, a drop-down with font-sizing capabilities is available. This can be enabled or disabled with `showFontSize`.
When enabled, the default font-size values can be modified via _optional_ `fontSizeValues`. `fontSizeValues` accepts a `Map<String, String>` consisting of a `String` title for the font size and a `String` value for the font size. Example:
```
```dart
fontSizeValues: const {'Small': '8', 'Medium': '24.5', 'Large': '46'}
```
Font size can be cleared with a value of `0`, for example:
```
Font size can be cleared with a value of `0`, for example:
```dart
fontSizeValues: const {'Small': '8', 'Medium': '24.5', 'Large': '46', 'Clear': '0'}
```
### Font Family
To use your own fonts, update your [assets folder](https://github.com/singerdmx/flutter-quill/tree/master/example/assets/fonts) and pass in `fontFamilyValues`. More details at [this change](https://github.com/singerdmx/flutter-quill/commit/71d06f6b7be1b7b6dba2ea48e09fed0d7ff8bbaa), [this article](https://stackoverflow.com/questions/55075834/fontfamily-property-not-working-properly-in-flutter) and [this](https://www.flutterbeads.com/change-font-family-flutter/).
### Custom Buttons
You may add custom buttons to the _end_ of the toolbar, via the `customButtons` option, which is a `List` of `QuillCustomButton`.
To add an Icon, we should use a new QuillCustomButton class
```
```dart
QuillCustomButton(
icon:Icons.ac_unit,
onTap: () {
@ -126,7 +151,8 @@ To add an Icon, we should use a new QuillCustomButton class
```
Each `QuillCustomButton` is used as part of the `customButtons` option as follows:
```
```dart
QuillToolbar.basic(
(...),
customButtons: [
@ -153,16 +179,15 @@ QuillToolbar.basic(
]
```
## Embed Blocks
As of version 6.0, embed blocks are not provided by default as part of this package. Instead, this package provides an interface to all the user to provide there own implementations for embed blocks. Implementations for image, video and formula embed blocks is proved in a separate package [`flutter_quill_extensions`](https://pub.dev/packages/flutter_quill_extensions).
Provide a list of embed
Provide a list of embed
### Using the embed blocks from `flutter_quill_extensions`
```
```dart
import 'package:flutter_quill_extensions/flutter_quill_extensions.dart';
QuillEditor.basic(
@ -176,12 +201,11 @@ QuillToolbar.basic(
);
```
### Custom Size Image for Mobile
Define `mobileWidth`, `mobileHeight`, `mobileMargin`, `mobileAlignment` as follows:
```
```dart
{
"insert": {
"image": "https://user-images.githubusercontent.com/122956/72955931-ccc07900-3d52-11ea-89b1-d468a6e2aa2b.png"
@ -312,9 +336,8 @@ And voila, we have a custom widget inside of the rich text editor!
<img width="400" alt="1" src="https://i.imgur.com/yBTPYeS.png">
</p>
> For more info and a video example, see the [PR of this feature](https://github.com/singerdmx/flutter-quill/pull/877)
> For more details, check out [this YouTube video](https://youtu.be/pI5p5j7cfHc)
> 1. For more info and a video example, see the [PR of this feature](https://github.com/singerdmx/flutter-quill/pull/877)
> 2. For more details, check out [this YouTube video](https://youtu.be/pI5p5j7cfHc)
### Translation
@ -325,7 +348,7 @@ QuillToolbar(locale: Locale('fr'), ...)
QuillEditor(locale: Locale('fr'), ...)
```
Currently, translations are available for these 23 locales:
Currently, translations are available for these 24 locales:
* `Locale('en')`
* `Locale('ar')`
@ -350,24 +373,11 @@ Currently, translations are available for these 23 locales:
* `Locale('fa')`
* `Locale('hi')`
* `Locale('sr')`
* `Locale('jp')`
#### Contributing to translations
The translation file is located at [toolbar.i18n.dart](lib/src/translations/toolbar.i18n.dart). Feel free to contribute your own translations, just copy the English translations map and replace the values with your translations. Then open a pull request so everyone can benefit from your translations!
---
<p float="left">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/103142422-9bb19c80-46b7-11eb-83e4-dd0538a9236e.png">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/103142455-0531ab00-46b8-11eb-89f8-26a77de9227f.png">
</p>
<p float="left">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/102963021-f28f5a00-449c-11eb-8f5f-6e9dd60844c4.png">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/102977404-c9c88e00-44b7-11eb-9423-b68f3b30b0e0.png">
</p>
The translation file is located at [toolbar.i18n.dart](lib/src/translations/toolbar.i18n.dart). Feel free to contribute your own translations, just copy the English translations map and replace the values with your translations. Then open a pull request so everyone can benefit from your translations!
## Sponsors
@ -376,10 +386,6 @@ The translation file is located at [toolbar.i18n.dart](lib/src/translations/tool
"https://user-images.githubusercontent.com/122956/72955931-ccc07900-3d52-11ea-89b1-d468a6e2aa2b.png"
width="150px" height="150px"></a>
---
[Chinese Documentation](./doc_cn.md)
[Quill]: https://quilljs.com/docs/formats
[Flutter]: https://github.com/flutter/flutter
[FlutterQuill]: https://pub.dev/packages/flutter_quill

@ -1,4 +1,4 @@
<p align="center">
<p align="center" style="background-color:#282C34">
<img src="https://user-images.githubusercontent.com/10923085/119221946-2de89000-baf2-11eb-8285-68168a78c658.png" width="600px">
</p>
<h1 align="center">支持 Flutter 平台的富文本编辑器</h1>
@ -20,24 +20,41 @@
[github-forks-badge]: https://img.shields.io/github/forks/singerdmx/flutter-quill.svg?style=for-the-badge&logo=github&logoColor=ffffff
[github-forks-link]: https://github.com/singerdmx/flutter-quill/network/members
[原文档](./README.md)
FlutterQuill 是一个富文本编辑器,同样也是 [Quill] 在 [Flutter] 的版本。
---
`FlutterQuill` 是一个富文本编辑器,也是 [Quill](https://quilljs.com/docs/formats) 在 [Flutter](https://github.com/flutter/flutter) 的版本
该库是为移动平台构建的『所见即所得』的富文本编辑器,同时我们还正在对 `Web` 平台进行兼容。查看我们的 [Youtube 播放列表](https://youtube.com/playlist?list=PLbhaS_83B97vONkOAWGJrSXWX58et9zZ2) 或 [代码介绍](https://github.com/singerdmx/flutter-quill/blob/master/CodeIntroduction.md) 以了解代码的详细内容。你可以加入我们的 [Slack Group](https://join.slack.com/t/bulletjournal1024/shared_invite/zt-fys7t9hi-ITVU5PGDen1rNRyCjdcQ2g) 来进行讨论
该库是为移动平台构建的 “ 所见即所得 ” 的富文本编辑器,同时我们还正在对 Web 平台进行兼容。查看我们的 [Youtube 播放列表] 或 [代码介绍] 以了解代码的详细内容。你可以加入我们的 [Slack Group] 来进行讨论。
示例 `App` : [BULLET JOURNAL](https://bulletjournal.us/home/index.html)
Demo App: https://bulletjournal.us/home/index.html
`Pub` : [FlutterQuill](https://pub.dev/packages/flutter_quill)
Pub: https://pub.dev/packages/flutter_quill
## 效果展示
<p float="left">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/103142422-9bb19c80-46b7-11eb-83e4-dd0538a9236e.png">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/103142455-0531ab00-46b8-11eb-89f8-26a77de9227f.png">
</p>
<p float="left">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/102963021-f28f5a00-449c-11eb-8f5f-6e9dd60844c4.png">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/102977404-c9c88e00-44b7-11eb-9423-b68f3b30b0e0.png">
</p>
---
## 用法
查看 `示例` 目录来学习 FlutterQuill 最简单的使用方法,你通常只需要实例化一个控制器:
查看 `示例` 目录来学习 `FlutterQuill` 最简单的使用方法,你通常只需要一个控制器实例
```
```dart
QuillController _controller = QuillController.basic();
```
然后在你的 App 中嵌入工具栏和编辑器,例如:
然后在你的 `App` 中嵌入工具栏 `QuillToolbar` 和编辑器 `QuillEditor` ,如:
```dart
Column(
@ -47,75 +64,88 @@ Column(
child: Container(
child: QuillEditor.basic(
controller: _controller,
readOnly: false, // true for view only mode
readOnly: false, // 为 true 时只读
),
),
)
],
)
```
查看 [示例页面] 以了解高级用户。
## 输入 / 输出
查看 [示例页面](https://github.com/singerdmx/flutter-quill/blob/master/example/lib/pages/home_page.dart) 查看高级用法
该库使用 [Quill] 作为内部数据格式。
## 保存和读取
* 使用 `_controller.document.toDelta()` 获取增量。
* 使用 `_controller.document.toPlainText()` 获取纯文本。
该库使用 [Quill 格式](https://quilljs.com/docs/formats) 作为内部数据格式
FlutterQuill 提供了一些 JSON 序列化支持,以便您可以保存和打开文档。 要将文档保存为 JSON 类型,请执行以下操作:
* 使用 `_controller.document.toDelta()` 获取 [Delta 格式](https://quilljs.com/docs/delta/)
* 使用 `_controller.document.toPlainText()` 获取纯文本
```
`FlutterQuill` 提供了一些 `JSON` 序列化支持,以便你保存和打开文档
要将文档转化为 `JSON` 类型,请执行以下操作:
```dart
var json = jsonEncode(_controller.document.toDelta().toJson());
```
然后你就可以将其存储。
要将 `FlutterQuill` 使用之前存储的 `JSON` 数据,请执行以下操作:
想要 FlutterQuill 编辑器使用你之前存储的 JSON 数据,请执行以下操作:
```
```dart
var myJSON = jsonDecode(incomingJSONText);
_controller = QuillController(
document: Document.fromJson(myJSON),
selection: TextSelection.collapsed(offset: 0));
selection: TextSelection.collapsed(offset: 0),
);
```
## Web
对于 web 开发,请执行 `flutter config --enable-web` 来获取对 flutter 的支持或使用 [ReactQuill] 获取对 React 的支持。
## Web 端
进行 Web 开发需要提供 `EmbedBuilder`, 参考:[defaultEmbedBuilderWeb](https://github.com/singerdmx/flutter-quill/blob/master/example/lib/universal_ui/universal_ui.dart#L29).
进行 Web 开发还需要提供 `webImagePickImpl`, 参考: [示例页面](https://github.com/singerdmx/flutter-quill/blob/master/example/lib/pages/home_page.dart#L225).
对于 `Web` 开发,请执行 `flutter config --enable-web` 来获取 `Flutter` 的支持,或使用 [ReactQuill](https://github.com/zenoamaro/react-quill) 获取对 `React` 的支持
进行 `Web` 开发需要提供 `EmbedBuilder` ,参见 [defaultEmbedBuilderWeb](https://github.com/singerdmx/flutter-quill/blob/master/example/lib/universal_ui/universal_ui.dart#L29)
## Desktop
进行 `Web` 开发还需要提供 `webImagePickImpl` ,参见 [示例页面](https://github.com/singerdmx/flutter-quill/blob/master/example/lib/pages/home_page.dart#L225)
在桌面端进行工具栏按钮开发,需要提供 `filePickImpl`。参考: [示例页面](https://github.com/singerdmx/flutter-quill/blob/master/example/lib/pages/home_page.dart#L205).
## 桌面端
进行桌面端工具栏按钮开发需要提供 `filePickImpl` ,参见 [示例页面](https://github.com/singerdmx/flutter-quill/blob/master/example/lib/pages/home_page.dart#L205)
## 配置
`QuillToolbar` 类允许您自定义可用的格式选项。[示例页面] 提供了高级使用和配置的示例代码。
`QuillToolbar` 类允许你自定义可用的格式选项,参见 [示例页面](https://github.com/singerdmx/flutter-quill/blob/master/example/lib/pages/home_page.dart) 提供了高级使用和配置的示例代码
### 字号
在编辑器工具栏中,提供了具有字号功能的下拉菜单。 这可以通过 `showFontSize` 启用或禁用。
启用后,可以通过*可选的* `fontSizeValues` 属性修改默认字号。 `fontSizeValues` 接受一个 `Map<String, String>`,其中包含一个 `String` 类型的标题和一个 `String` 类型的字号。 例子:
```
fontSizeValues: const {'Small': '8', 'Medium': '24.5', 'Large': '46'}
在工具栏中提供了选择字号的下拉菜单,可通过 `showFontSize` 来启用或禁用
启用后,可以通过 *可选的* `fontSizeValues` 属性修改默认字号
`fontSizeValues` 接收一个 `Map<String, String>`,其中包含一个 `String` 类型的标题和一个 `String` 类型的字号,如:
```dart
fontSizeValues: const {'小字号': '8', '中字号': '24.5', '大字号': '46'}
```
字体大小可以使用 `0` 值清除,例如:
```
fontSizeValues: const {'Small': '8', 'Medium': '24.5', 'Large': '46', 'Clear': '0'}
```dart
fontSizeValues: const {'小字号': '8', '中字号': '24.5', '大字号': '46', '清除': '0'}
```
### 字体
想要使用你自己的字体,请更新你的 [assets folder](https://github.com/singerdmx/flutter-quill/tree/master/example/assets/fonts) 并且传入 `fontFamilyValues`。详情内容请查看 [this change](https://github.com/singerdmx/flutter-quill/commit/71d06f6b7be1b7b6dba2ea48e09fed0d7ff8bbaa), [this article](https://stackoverflow.com/questions/55075834/fontfamily-property-not-working-properly-in-flutter) 和 [this](https://www.flutterbeads.com/change-font-family-flutter/)。
想要使用你自己的字体,请更新你的 [assets folder](https://github.com/singerdmx/flutter-quill/tree/master/example/assets/fonts) 并且传入 `fontFamilyValues`
详见 [这个 Commit](https://github.com/singerdmx/flutter-quill/commit/71d06f6b7be1b7b6dba2ea48e09fed0d7ff8bbaa) 和 [这篇文章](https://stackoverflow.com/questions/55075834/fontfamily-property-not-working-properly-in-flutter) 以及 [这个教程](https://www.flutterbeads.com/change-font-family-flutter/)
### 自定义按钮
您可以通过 `customButtons` 可选参数将自定义按钮添加到工具栏的*末尾*,该参数接收的了行是 `QuillCustomButton``List`
要添加一个 Icon,我们应该实例化一个新的新的 `QuillCustomButton`
```
你可以通过 `customButtons` 可选参数将自定义按钮添加到工具栏的 *末尾* ,该参数接收 `QuillCustomButton``List`
要添加一个 `Icon` ,我们应该实例化一个新的 `QuillCustomButton`
```dart
QuillCustomButton(
icon:Icons.ac_unit,
onTap: () {
@ -124,8 +154,9 @@ fontSizeValues: const {'Small': '8', 'Medium': '24.5', 'Large': '46', 'Clear': '
),
```
每个 `QuillCustomButton` 都是 `customButtons` 可选参数的一部分,如下所示:
```
每个 `QuillCustomButton` 都是 `customButtons` 可选参数的一部分,如:
```dart
QuillToolbar.basic(
(...),
customButtons: [
@ -135,14 +166,12 @@ QuillToolbar.basic(
debugPrint('snowflake1');
}
),
QuillCustomButton(
icon:Icons.ac_unit,
onTap: () {
debugPrint('snowflake2');
}
),
QuillCustomButton(
icon:Icons.ac_unit,
onTap: () {
@ -152,10 +181,33 @@ QuillToolbar.basic(
]
```
## 嵌入块
`6.0` 版本,本库不默认支持嵌入块,反之本库提供接口给所有用户来创建所需的嵌入块。
若需要图片、视频、公式块的支持,请查看独立库 [`flutter_quill_extensions`](https://pub.dev/packages/flutter_quill_extensions)
### 根据 `flutter_quill_extensions` 使用自定义嵌入块
```dart
import 'package:flutter_quill_extensions/flutter_quill_extensions.dart';
QuillEditor.basic(
controller: controller,
embedBuilders: FlutterQuillEmbeds.builders(),
);
QuillToolbar.basic(
controller: controller,
embedButtons: FlutterQuillEmbeds.buttons(),
);
```
### 移动端上自定义图片尺寸
定义`mobileWidth`、`mobileHeight`、`mobileMargin`、`mobileAlignment`如下:
```
```dart
{
"insert": {
"image": "https://user-images.githubusercontent.com/122956/72955931-ccc07900-3d52-11ea-89b1-d468a6e2aa2b.png"
@ -167,13 +219,14 @@ QuillToolbar.basic(
```
### 自定义嵌入块
有时您想在文本中添加一些自定义内容或者是自定义小部件。 比如向文本添加注释,或者在文本编辑器中添加的任何自定义内容。
您唯一需要做的就是添加一个 `CustomBlockEmbed` 并将其映射到 `customElementsEmbedBuilder` 中,以将自定义块内的数据转换为一个 widget!
有时你想在文本中添加一些自定义内容或者是自定义小部件
比如向文本添加注释,或者在文本编辑器中添加的任何自定义内容
例子:
你唯一需要做的就是添加一个 `CustomBlockEmbed` 并将其映射到 `customElementsEmbedBuilder` 中,以将自定义块内的数据转换为一个 `Widget` ,如
`CustomBlockEmbed` 开始,我们在这里扩展它并添加对 'Note' widget 的方法,这就是 `Document`,`flutter_quill` 使用它来呈现富文本。
先从 `CustomBlockEmbed` `extent` 出一个 `NotesBlockEmbed` 类,并添加两个方法以返回 `Document` 用以 `flutter_quill` 渲染富文本
```dart
class NotesBlockEmbed extends CustomBlockEmbed {
@ -188,43 +241,53 @@ class NotesBlockEmbed extends CustomBlockEmbed {
}
```
然后,我们需要将这个 “notes” 类型映射到 widget 中。在例子中,我使用 `ListTile` 来显示它,使用 `onTap` 方法俩编辑内容,另外不要忘记将此方法添加到 `QuillEditor` 中。
然后,我们需要将这个 `notes` 类型映射到其想渲染出的 `Widget`
在这里我们使用 `ListTile` 来渲染它,并使用 `onTap` 方法来编辑内容,最后不要忘记将此方法添加到 `QuillEditor`
```dart
Widget customElementsEmbedBuilder(
BuildContext context,
QuillController controller,
CustomBlockEmbed block,
bool readOnly,
void Function(GlobalKey videoContainerKey)? onVideoInit,
) {
switch (block.type) {
case 'notes':
final notes = NotesBlockEmbed(block.data).document;
return Material(
color: Colors.transparent,
child: ListTile(
title: Text(
notes.toPlainText().replaceAll('\n', ' '),
maxLines: 3,
overflow: TextOverflow.ellipsis,
),
leading: const Icon(Icons.notes),
onTap: () => _addEditNote(context, document: notes),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
side: const BorderSide(color: Colors.grey),
),
class NotesEmbedBuilder implements EmbedBuilder {
NotesEmbedBuilder({required this.addEditNote});
Future<void> Function(BuildContext context, {Document? document}) addEditNote;
@override
String get key => 'notes';
@override
Widget build(
BuildContext context,
QuillController controller,
Embed node,
bool readOnly,
) {
final notes = NotesBlockEmbed(node.value.data).document;
return Material(
color: Colors.transparent,
child: ListTile(
title: Text(
notes.toPlainText().replaceAll('\n', ' '),
maxLines: 3,
overflow: TextOverflow.ellipsis,
),
);
default:
return const SizedBox();
leading: const Icon(Icons.notes),
onTap: () => addEditNote(context, document: notes),
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.circular(10),
side: const BorderSide(color: Colors.grey),
),
),
);
}
}
```
然后,编写一个方法来添加/编辑内容,`showDialog` 方法显示 Quill 编辑器以编辑内容,用户编辑完成后,需要检查文档是否有内容,如果有内容,在 `CustomBlockEmbed` 中添加/编辑 `NotesBlockEmbed`(注意,如果没有在 `NotesBlockEmbed` 中传递 `CustomBlockEmbed` ,编辑将不会生效)。
最后我们编写一个方法来添加或编辑内容
`showDialog` 方法先显示 `Quill` 编辑器以让用户编辑内容,编辑完成后,我们需要检查文档是否有内容,若有则在 `BlockEmbed.custom` 传入添加或编辑了的 `NotesBlockEmbed`
注意,如果我们没有在 `BlockEmbed.custom` 传如我们所自定义的 `CustomBlockEmbed` ,那么编辑将不会生效
```dart
Future<void> _addEditNote(BuildContext context, {Document? document}) async {
@ -274,34 +337,34 @@ Future<void> _addEditNote(BuildContext context, {Document? document}) async {
}
```
这样我们就成功的在富文本编辑器中添加了一个自定义小组件
这样我们就成功的在富文本编辑器中添加了一个自定义小组件
<p float="left">
<img width="400" alt="1" src="https://i.imgur.com/yBTPYeS.png">
</p>
> 更多信息和视频示例,请参阅 [PR of this feature](https://github.com/singerdmx/flutter-quill/pull/877)
> 有关更多详细信息,请查看 [this YouTube video](https://youtu.be/pI5p5j7cfHc)
> 1. 更多信息和视频示例,请参阅 [这个特性的 PR](https://github.com/singerdmx/flutter-quill/pull/877)
> 2. 有关更多详细信息,请查看 [这个 Youtube 视频](https://youtu.be/pI5p5j7cfHc)
### 翻译
该库为 quill 工具栏和编辑器提供翻译,除非您设置自己的语言环境,否则它将遵循系统语言环境:
该库为 `QuillToolbar``QuillEditor` 提供了部分翻译,且若你未设置自己的语言环境,则它将使用系统语言环境:
```dart
QuillToolbar(locale: Locale('fr'), ...)
QuillEditor(locale: Locale('fr'), ...)
```
目前,可提供以下 22 种语言环境的翻译:
目前,可提供以下 24 种语言环境的翻译:
* `Locale('en')`
* `Locale('ar')`
* `Locale('cs')`
* `Locale('de')`
* `Locale('da')`
* `Locale('fr')`
* `Locale('zh', 'CN')`
* `Locale('zh', 'HK')`
* `Locale('zh', 'cn')`
* `Locale('zh', 'hk')`
* `Locale('ko')`
* `Locale('ru')`
* `Locale('es')`
@ -317,24 +380,17 @@ QuillEditor(locale: Locale('fr'), ...)
* `Locale('fa')`
* `Locale('hi')`
* `Locale('sr')`
* `Locale('jp')`
#### 贡献翻译
翻译文件位于 [toolbar.i18n.dart](lib/src/translations/toolbar.i18n.dart)。 随意贡献您自己的翻译,只需复制英文翻译映射并将值替换为您的翻译。 然后打开一个拉取请求,这样每个人都可以从您的翻译中受益!
---
<p float="left">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/103142422-9bb19c80-46b7-11eb-83e4-dd0538a9236e.png">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/103142455-0531ab00-46b8-11eb-89f8-26a77de9227f.png">
</p>
翻译文件位于 [toolbar.i18n.dart](lib/src/translations/toolbar.i18n.dart)。
<p float="left">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/102963021-f28f5a00-449c-11eb-8f5f-6e9dd60844c4.png">
<img width="400" alt="1" src="https://user-images.githubusercontent.com/122956/102977404-c9c88e00-44b7-11eb-9423-b68f3b30b0e0.png">
</p>
随意贡献你自己的翻译,只需复制英文翻译映射并将值替换为你的翻译即可。
然后打开一个拉取请求,这样每个人都可以从你的翻译中受益!
---
## 帮助
@ -343,11 +399,9 @@ QuillEditor(locale: Locale('fr'), ...)
"https://user-images.githubusercontent.com/122956/72955931-ccc07900-3d52-11ea-89b1-d468a6e2aa2b.png"
width="150px" height="150px"></a>
[Quill]: https://quilljs.com/docs/formats
[Flutter]: https://github.com/flutter/flutter
[FlutterQuill]: https://pub.dev/packages/flutter_quill
[ReactQuill]: https://github.com/zenoamaro/react-quill
[Youtube 播放列表]: https://youtube.com/playlist?list=PLbhaS_83B97vONkOAWGJrSXWX58et9zZ2
[Slack Group]: https://join.slack.com/t/bulletjournal1024/shared_invite/zt-fys7t9hi-ITVU5PGDen1rNRyCjdcQ2g
[示例页面]: https://github.com/singerdmx/flutter-quill/blob/master/example/lib/pages/home_page.dart
[代码介绍]: https://github.com/singerdmx/flutter-quill/blob/master/CodeIntroduction.md
## 赞助
<a href="https://bulletjournal.us/home/index.html">
<img src=
"https://user-images.githubusercontent.com/122956/72955931-ccc07900-3d52-11ea-89b1-d468a6e2aa2b.png"
width="150px" height="150px"></a>

@ -209,7 +209,7 @@ extension Localization on String {
'Gallery': '相簿',
'Link': '链接',
'Please first select some text to transform into a link.':
'请先选择一些要转化为链接的文本',
'请先选择转化为链接的文本',
'Open': '打开',
'Copy': '复制',
'Remove': '移除',
@ -222,18 +222,51 @@ extension Localization on String {
'Width': '宽度',
'Height': '高度',
'Size': '文字大小',
'Small': 'Small',
'Large': 'Large',
'Huge': 'Huge',
'Clear': 'Clear',
'Font': 'Font',
'Search': 'Search',
'matches': 'matches',
'showing match': 'showing match',
'Prev': 'Prev',
'Next': 'Next',
'Camera': 'Camera',
'Video': 'Video',
'Small': '小字号',
'Large': '大字号',
'Huge': '超大字号',
'Clear': '清除',
'Font': '字体',
'Search': '搜索',
'matches': '结果',
'showing match': '显示结果',
'Prev': '上一个',
'Next': '下一个',
'Camera': '拍照',
'Video': '录像',
},
'jp': {
'Paste a link': 'リンクをペースト',
'Ok': '完了',
'Select Color': '色を選択',
'Gallery': '写真集',
'Link': 'リンク',
'Please first select some text to transform into a link.':
'まずリンクに変換する文字を選択してください.',
'Open': '開く',
'Copy': 'コピー',
'Remove': '削除',
'Save': '保存',
'Zoom': '拡大',
'Saved': '保存済み',
'Text': '文字',
'What is entered is not a link': '入力されたのはリンクではありません',
'Resize': 'サイズを調整',
'Width': '',
'Height': '高さ',
'Size': 'サイズ',
'Small': '小さい',
'Large': '大きい',
'Huge': 'でっかい',
'Clear': 'クリア',
'Font': 'フォント',
'Search': '検索',
'matches': '結果',
'showing match': '結果を表示',
'Prev': '前へ',
'Next': '次へ',
'Camera': 'カメラ',
'Video': 'ビデオ',
},
'ko': {
'Paste a link': '링크를 붙여넣어 주세요.',

Loading…
Cancel
Save