You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DebuggerX a2553e1419
feat: UI text internationalization in MD editor.
3 years ago
..
icons wip: add md editor for scheme description. 3 years ago
lib feat: UI text internationalization in MD editor. 3 years ago
.gitignore wip: add md editor for scheme description. 3 years ago
CHANGELOG.md wip: add md editor for scheme description. 3 years ago
LICENSE wip: add md editor for scheme description. 3 years ago
README.md wip: add md editor for scheme description. 3 years ago
pubspec.yaml feat: implement some api; add md editor to app; login and signup logic. 3 years ago

README.md

markdown_editor

Simple and easy to implement your markdown editor, it uses its own parser.

show

If you only need to render, you can refer to https://github.com/xia-weiyang/markdown_core

MarkdownEditor(
      initText: 'initText',
      initTitle: 'initText',
      onTapLink: (link){
        print('点击了链接 $link');
      },
      imageWidget: (imageUrl) {
        return // Your image widget ;
      },
      imageSelect: (){ // Click image select btn
        return // selected image link;
      },
)