simple_markdown_editor_plus 0.2.1 copy "simple_markdown_editor_plus: ^0.2.1" to clipboard
simple_markdown_editor_plus: ^0.2.1 copied to clipboard

outdated

A TextField Widget that allow you to convert easily what's in the TextField to Markdown with custom toolbar support.

simple_markdown_editor #

This is a fork of simple_markdown_editor by zahnia88

Support Me Support Me GitHub stars undo GitHub

Simple markdown editor library For flutter. For demo video, you can see it at this url Demo

What's new (14/04/2022) #

  • Allow custom toolbar to be passed as named paramter.

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:
    simple_markdown_editor: ^latest

Run flutter pub get to install.

How it works #

Import library

import 'package:simple_markdown_editor/simple_markdown_editor.dart';

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();
FocusNode _focusNode = FocusNode();

Show widget for editor

// editable text with toolbar
MarkdownFormField(
    controller: _controller,
    enableToolBar: true,
    emojiConvert: true,
    autoCloseAfterSelectEmoji: false,
)

// editable text without toolbar
MarkdownField(
    controller: _controller,
    emojiConvert: true,
)

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
    },
)

You can also pass custom toolbar to the editor which is a widget. The enableToolBar must set to true for visible toolbar enableToolBar: true

MarkdownFormField(
    controller: _controller,
    enableToolBar: true,
    emojiConvert: true,
    autoCloseAfterSelectEmoji: false,
    toolbar: Container(
        // your own widgets here...
        // see more refer https://github.com/fossfreaks/simple_markdown_editor/blob/main/lib/widgets/markdown_toolbar.dart
    ),
)

3
likes
0
pub points
38%
popularity

Publisher

verified publisherfossfreaks.com

A TextField Widget that allow you to convert easily what's in the TextField to Markdown with custom toolbar support.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

expandable, flutter, flutter_markdown, font_awesome_flutter, markdown

More

Packages that depend on simple_markdown_editor_plus