markdown_editor_plus

Creator: coderz1093

Last updated:

Add to Cart

Description:

markdown editor plus

Markdown Editor Plus #
This is a fork of simple_markdown_editor by zahnia88
with contributions from fossfreaks
Simple markdown editor library For flutter.
For demo video, you can see it at this url Demo
Features #

✅ Convert to Bold, Italic, Strikethrough
✅ Convert to Code, Quote, Links
✅ Convert to Heading (H1, H2, H3).
✅ Convert to unorder list and checkbox list
✅ Support multiline convert
✅ Support auto convert emoji

Usage #
Add dependencies to your pubspec.yaml
dependencies:
markdown_editor_plus: ^latest
copied to clipboard
Run flutter pub get to install.
How it works #
Import library
import 'package:markdown_editor_plus/markdown_editor_plus.dart';
copied to clipboard
Initialize controller and focus node. These controllers and focus nodes are optional because if you don't create them, the editor will create them themselves
TextEditingController _controller = TextEditingController();
copied to clipboard
Show widget for editor
// editable text with toolbar by default
MarkdownAutoPreview(
controller: _controller,
emojiConvert: true,
)

// editable text without toolbar
MarkdownField(
controller: _controller,
emojiConvert: true,
enableToolBar: false,
)
copied to clipboard
if you want to parse text into markdown you can use the following widget:
String data = '''
**bold**
*italic*

#hashtag
@mention
'''

MarkdownParse(
data: data,
onTapHastag: (String name, String match) {
// name => hashtag
// match => #hashtag
},
onTapMention: (String name, String match) {
// name => mention
// match => #mention
},
)
copied to clipboard
In order to set the colors
MarkdownAutoPreview(
controller: _controller,
enableToolBar: true,
emojiConvert: true,
autoCloseAfterSelectEmoji: false,
// toolbar's background color, text color will be based on theme
toolbarBackground: Colors.blue,
// toolbar's expandable widget colors like headings, ordering
expandableBackground: Colors.blue[200],
)
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.