zefyr
Anatoly Pulyaevskiy bec1e53f2e Added ZefyrMode to replace enabled flag; added selectionControls fields to ZefyrEditor 5 years ago
..
example Added ZefyrMode to replace enabled flag; added selectionControls fields to ZefyrEditor 5 years ago
lib Added ZefyrMode to replace enabled flag; added selectionControls fields to ZefyrEditor 5 years ago
test Added ZefyrMode to replace enabled flag; added selectionControls fields to ZefyrEditor 5 years ago
tool Temporarily disable coverage as it is broken in Flutter; added more envs to build 6 years ago
.gitignore Updated gitignore 6 years ago
AUTHORS Updated authors 6 years ago
CHANGELOG.md Added ZefyrMode to replace enabled flag; added selectionControls fields to ZefyrEditor 5 years ago
LICENSE Initial import of zefyr package 6 years ago
README.md Updated installation instructions for zefyr package 6 years ago
analysis_options.yaml Removed implicit-casts lint; updated changelog 5 years ago
pubspec.yaml Added ZefyrMode to replace enabled flag; added selectionControls fields to ZefyrEditor 5 years ago
zefyr.png Updated readme 6 years ago

README.md

Zefyr Build Status codecov

Soft and gentle rich text editing for Flutter applications.

Zefyr is currently in early preview. If you have a feature request or found a bug, please file it at the issue tracker.

For documentation see https://github.com/memspace/zefyr.

zefyr screenshot

Installation

Official releases of Zefyr can be installed from Dart’s Pub package repository.

Note that versions from Pub track stable channel of Flutter. If you are on master channel check out instructions below in this document.

To install Zefyr from Pub add zefyr package as a dependency to your pubspec.yaml:

dependencies:
  zefyr: [latest_version]

And run flutter packages get.

Installing version of Zefyr compatible with master channel of Flutter.

You need to add git dependency to your pubspec.yaml that points to flutter-master branch:

dependencies:
  zefyr:
    git:
      url: https://github.com/memspace/zefyr.git
      ref: flutter-master
      path: packages/zefyr

And run flutter packages get.

Continue to https://github.com/memspace/zefyr/blob/master/doc/quick_start.md to learn more about Zefyr and how to use it in your projects.