Skip to content

brian-quah/android_htmleditor

 
 

Repository files navigation

Android Html Editor

Flutter plugin for Knife Editor (Android) from https://github.com/mthli/Knife.

Does not work in iOS, check for Platform using

import 'dart:io' show Platform;

if (Platform.isAndroid) {
    AndroidHtmleditor.edit(html).then((_) {
        setState(() {
            html = _;
        });
    });
} else {
  // other platform-specific code
}

About

Flutter plugin for Knife Editor (Android) from https://github.com/mthli/Knife

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 43.1%
  • Ruby 19.7%
  • Kotlin 15.4%
  • Dart 14.0%
  • Swift 4.3%
  • Objective-C 3.5%