Flutter Markdown Plus
About This Package
flutter_markdown_plus is the continuation of the original flutter_markdown package that was developed and maintained by Google. As the original package has been discontinued, Foresight Mobile has taken over maintenance of this project to ensure continued support and development for the Flutter community.
The package is actively maintained: bug reports are triaged against the current release, community pull requests are reviewed and merged with credit, and fixes and additive features ship regularly as patch releases. See the changelog and GitHub releases for the full history, and CONTRIBUTING.md if you'd like to help.
Recent highlights
contextMenuBuilder— customise or suppress the text-selection toolbar shown whenselectableis enabled (1.0.10).noScroll— renderMarkdownin a non-scrollingColumnfor embedding inside an existing scroll view (1.0.8).- Theme-aware blockquotes — default blockquote styling now adapts to light and dark themes (1.0.8).
- Correct inline formatting in blockquotes, consistent line height across mixed font weights, and custom
builders/paddingBuilderssupport for thehrtag (1.0.8). - Integration test suite running on a real device or emulator, plus a GitHub Actions job on an Android emulator (1.0.8).
For historical context, see the original flutter_markdown package.
LaTeX Support: For LaTeX rendering support, check out the flutter_markdown_plus_latex package.
Features
- GitHub Flavored Markdown by default — headings, bold/italic, strikethrough, blockquotes, lists, and horizontal rules.
- Tables with customisable borders, cell alignment, and per-column widths.
- Task lists rendered as checkboxes.
- Fenced and inline code with independent per-block horizontal scrolling and selection highlighting.
- Links with a tap callback, and images from the network, local files, or bundled assets.
- Footnotes and emoji (Unicode or
:shortcode:syntax). - Text selection with
onSelectionChanged, a tap handler, and a customisable selection toolbar viacontextMenuBuilder. - Three widgets for different layouts: scrollable
Markdown, inlineMarkdownBody, and unstyledMarkdownRaw. - Deep styling through
MarkdownStyleSheet, plus custom element and padding builders for full control over rendering. noScrollmode to embed rendered Markdown inside an existing scroll view.- Runs on Android, iOS, web, macOS, Windows, and Linux.
Screenshots
| Rich text & formatting | Tables & task lists | Code blocks |
|---|---|---|
![]() |
![]() |
![]() |
Installation
Add the package to your project:
flutter pub add flutter_markdown_plus
Then import it where you need it:
import 'package:flutter_markdown_plus/flutter_markdown_plus.dart';
A markdown renderer for Flutter. It supports the original format, but no inline HTML.
Overview
The flutter_markdown_plus package
renders Markdown, a lightweight markup language, into a Flutter widget
containing a rich text representation.
flutter_markdown_plus is built on top of the Dart
markdown package, which parses
the Markdown into an abstract syntax tree (AST). The nodes of the AST are an
HTML representation of the Markdown data.
Flutter Isn't an HTML Renderer
While this approach to creating a rich text representation of Markdown source
text in Flutter works well, Flutter isn't an HTML renderer like a web browser.
Markdown was developed by John Gruber in 2004 to allow users to turn readable,
plain text content into rich text HTML. This close association with HTML allows
for the injection of HTML into the Markdown source data. Markdown parsers
generally ignore hand-tuned HTML and pass it through to be included in the
generated HTML. This trick has allowed users to perform some customization
or tweaking of the HTML output. A common HTML tweak is to insert HTML line-break
elements <br /> in Markdown source to force additional line breaks not
supported by the Markdown syntax. This HTML trick doesn't apply to Flutter. The
flutter_markdown_plus package doesn't support inline HTML.
Markdown Specifications and flutter_markdown_plus Compliance
There are three seminal documents regarding Markdown syntax; the original Markdown syntax documentation specified by John Gruber, the CommonMark specification, and the GitHub Flavored Markdown specification.
The CommonMark specification brings order to and clarifies the Markdown syntax cases left ambiguous or unclear in the Gruber document. GitHub Flavored Markdown (GFM) is a strict superset of CommonMark used by GitHub.
The markdown package, and in extension, the flutter_markdown_plus package, supports
four levels of Markdown syntax; basic, CommonMark, GitHub Flavored, and GitHub
Web. Basic, CommonMark, and GitHub Flavored adhere to the three Markdown
documents, respectively. GitHub Web adds header ID and emoji support. The
flutter_markdown_plus package defaults to GitHub Flavored Markdown.
Getting Started
Using the Markdown widget is simple, just pass in the source markdown as a string:
const Markdown(data: markdownSource);
If you do not want the padding or scrolling behavior, use the MarkdownBody instead:
const MarkdownBody(data: markdownSource);
By default, Markdown uses the formatting from the current material design theme, but it's possible to create your own custom styling. Use the MarkdownStyle class to pass in your own style. If you don't want to use Markdown outside of material design, use the MarkdownRaw class.
Choosing a widget
| Widget | Use it when |
|---|---|
Markdown |
You want a standalone, scrollable view of the content. |
MarkdownBody |
You want to embed rendered Markdown inside your own layout; it sizes itself to its content. |
MarkdownRaw |
You want the rendering without Material theming. |
To render inside an existing scroll view (for example a CustomScrollView or a
Column in a SingleChildScrollView), use Markdown with noScroll: true so it
lays out as a non-scrolling Column instead of managing its own scrolling.
Handling Links
Markdown links are not followed automatically — you decide what a tap does.
Provide an onTapLink callback and open the URL yourself, for example with the
url_launcher package:
Markdown(
data: '[Flutter](https://flutter.dev)',
onTapLink: (String text, String? href, String title) {
if (href != null) {
launchUrl(Uri.parse(href));
}
},
);
Styling
Pass a MarkdownStyleSheet to restyle any element. The easiest approach is to
start from the current theme and override only what you need with copyWith:
MarkdownBody(
data: markdownSource,
styleSheet: MarkdownStyleSheet.fromTheme(Theme.of(context)).copyWith(
h1: Theme.of(context).textTheme.headlineMedium,
code: const TextStyle(
fontFamily: 'monospace',
backgroundColor: Color(0x11000000),
),
blockquotePadding: const EdgeInsets.all(12),
),
);
Custom Rendering
For full control over how a specific tag renders, supply a
MarkdownElementBuilder through the builders map, and fine-tune spacing with
paddingBuilders. This lets you swap in your own widgets for elements such as
code, a, or custom tags. See the example/ app for working
custom-builder demos.
Selection
By default, Markdown is not selectable. A caller may use the following ways to customize the selection behavior of Markdown:
- Set
selectableto true, and useonTapTextandonSelectionChangedto handle tapping and selecting events. - Set
selectableto false, and wrap Markdown withSelectionAreaorSelectionRegion.
Emoji Support
Emoji glyphs can be included in the formatted text displayed by the Markdown widget by either inserting the emoji glyph directly or using the inline emoji tag syntax in the source Markdown document.
Markdown documents using UTF-8 encoding can insert emojis, symbols, and other Unicode characters directly in the source document. Emoji glyphs inserted directly in the Markdown source data are treated as text and preserved in the formatted output of the Markdown widget. For example, in the following Markdown widget constructor, a text string with a smiley face emoji is passed in as the source Markdown data.
Markdown(
controller: controller,
selectable: true,
data: 'Insert emoji here😀 ',
);
The resulting Markdown widget will contain a single line of text with the emoji preserved in the formatted text output.
The second method for including emoji glyphs is to provide the Markdown widget with a syntax extension for inline emoji tags. The Markdown package includes a syntax extension for emojis, EmojiSyntax. The default extension set used by the Markdown widget is the GitHub flavored extension set. This pre-defined extension set approximates the GitHub supported Markdown tags, providing syntax handlers for fenced code blocks, tables, auto-links, and strike-through. To include the inline emoji tag syntax while maintaining the default GitHub flavored Markdown behavior, define an extension set that combines EmojiSyntax with ExtensionSet.gitHubFlavored.
import 'package:markdown/markdown.dart' as md;
// ···
Markdown(
controller: controller,
selectable: true,
data: 'Insert emoji :smiley: here',
extensionSet: md.ExtensionSet(
md.ExtensionSet.gitHubFlavored.blockSyntaxes,
<md.InlineSyntax>[
md.EmojiSyntax(),
...md.ExtensionSet.gitHubFlavored.inlineSyntaxes
],
),
);
Image Support
The Img tag only supports the following image locations:
-
From the network: Use a URL prefixed by either
http://orhttps://. -
From local files on the device: Use an absolute path to the file, for example by concatenating the file name with the path returned by a known storage location, such as those provided by the
path_providerplugin. -
From image locations referring to bundled assets: Use an asset name prefixed by
resource:. likeresource:assets/image.png.
Verifying Markdown Behavior
Verifying Markdown behavior in other applications can often be useful to track
down or identify unexpected output from the flutter_markdown_plus package. Two
valuable resources are the
Dart Markdown Live Editor and the
Markdown Live Preview. These two resources
are dynamic, online Markdown viewers.
Markdown Resources
Here are some additional Markdown syntax resources:
Maintainers
This package is proudly maintained by Gareth Reese and Marko Radisavljevic for Foresight Mobile (GitHub)
Libraries
- flutter_markdown_plus
- A library to render markdown formatted text.


