FLUTTER ECOSYSTEM

glynskyi/zefyrka

Flutterアプリケーション向けのソフトで優しいリッチテキストエディティング

zefyrka のプロジェクト画像
Stars
113
Forks
87
最終プッシュ(UTC)
2024/05/17
プロジェクト状態
公開中
glynskyi GitHub avatar
GITHUB User

glynskyi ↗

言語DartCMakeRubyC++SwiftHTMLCShellKotlinObjective-C

このリポジトリが公開するパッケージ

使用している依存関係

依存関係一覧 8 件
  • flutter{"sdk":"flutter"}
  • collection^1.18.0
  • url_launcher^6.2.5
  • quill_format^1.0.2
  • notus_format^1.0.3
  • characters^1.3.0
  • flutter_test開発用{"sdk":"flutter"}
  • pedantic開発用^1.11.1

元の README

以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。

README を開く / 閉じる

Soft and gentle rich text editing for Flutter applications.

Zefyrka is a fork of Zefyr package with the following improvements:

  • support Flutter 2.0
  • opt-in the null safety
  • added the extended attributes:
    • text color
    • background color
    • paragraph alignment
    • paragraph indentation

For documentation see https://github.com/gkynskyi/zefyrka.

zefyrka screenshot

Usage

See 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.

Installation

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.