markdown_editor_mobile_web 0.0.4 copy "markdown_editor_mobile_web: ^0.0.4" to clipboard
markdown_editor_mobile_web: ^0.0.4 copied to clipboard

A flexible and easily decoratable Markdown editor designed for Flutter.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_markdown/flutter_markdown.dart';
import 'package:markdown_editor_mobile_web/markdown_editor_mobile_web.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  String text = '';

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        backgroundColor: Theme.of(context).colorScheme.inversePrimary,
        title: Text(widget.title),
      ),
      body: Center(
        child: SingleChildScrollView(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              Padding(
                padding: const EdgeInsets.symmetric(horizontal: 18),
                child: MarkdownEditor(
                  textFieldHeight: 230,
                  inputBorderRadius: BorderRadius.circular(4),
                  markdownText: (value) {
                    setState(() {
                      text = value;
                    });
                  },
                  doNotShowTypes: const [
                    MarkdownType.separator,
                    MarkdownType.image,
                    MarkdownType.link,
                  ],
                ),
              ),
              const SizedBox(height: 40),
              MarkdownBody(
                data: text,
                softLineBreak: true,
              ),
            ],
          ),
        ),
      ),
    );
  }
}
3
likes
150
pub points
51%
popularity

Publisher

unverified uploader

A flexible and easily decoratable Markdown editor designed for Flutter.

Repository (GitHub)
View/report issues

Topics

#markdown

Documentation

API reference

License

MIT (LICENSE)

Dependencies

cupertino_icons, flutter, flutter_svg

More

Packages that depend on markdown_editor_mobile_web