v1.6.0zefyrka
基于 Zefyr 包的干净、极简且支持协作的 Flutter 富文本编辑器。
适用于 Flutter 应用程序的柔软而温和的富文本编辑
{"sdk":"flutter"}^1.18.0^6.2.5^1.0.2^1.0.3^1.3.0{"sdk":"flutter"}^1.11.1以下为英文项目原文快照,最新内容请访问 GitHub。
Soft and gentle rich text editing for Flutter applications.
Zefyrka is a fork of Zefyr package with the following improvements:
For documentation see https://github.com/gkynskyi/zefyrka.
zefyrka screenshotSee the example directory for a minimal example of how to use Zefyrka. You typically just need to instantiate a controller:
ZefyrController _controller = ZefyrController();
and then embed the toolbar and the editor, within your app. For example:
Column(
children: [
ZefyrToolbar.basic(controller: _controller),
Expanded(
child: ZefyrEditor(
controller: _controller,
),
),
],
)
Check out Sample Page for advanced usage.
Official releases of Zefyrka can be installed from Dart's Pub package repository.
Note that versions from Pub track stable channel of Flutter.
To install Zefyrka from Pub add zefyrka package as a dependency to your pubspec.yaml:
dependencies:
zefyrka: [latest_version]
And run flutter packages get.
Continue to https://github.com/glynskyi/zefyrka/blob/main/doc/quick-start.md to learn more about Zefyrka and how to use it in your projects.