md_editor 0.1.3 copy "md_editor: ^0.1.3" to clipboard
md_editor: ^0.1.3 copied to clipboard

md_editor is a Flutter widget that provides an integrated Markdown editing experience. It features a built-in toolbar for formatting markdown content seamlessly.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:md_editor/md_editor.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(title: 'Markdown Editor', home: const HomePage());
  }
}

class HomePage extends StatelessWidget {
  const HomePage({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text('Markdown Editor')),
        body: MdEditor(content: '# Markdown Editor'),
      ),
    );
  }
}
2
likes
150
points
281
downloads

Publisher

verified publisheroresoftware.net

Weekly Downloads

md_editor is a Flutter widget that provides an integrated Markdown editing experience. It features a built-in toolbar for formatting markdown content seamlessly.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_markdown, phosphor_flutter

More

Packages that depend on md_editor