markdown_editor_plus 0.2.11+1 markdown_editor_plus: ^0.2.11+1 copied to clipboard
A TextField Widget that allow you to convert easily what's in the TextField to Markdown with custom toolbar support.
import 'package:flutter/material.dart';
import 'package:markdown_editor_plus/markdown_editor_plus.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
home: HomeScreen(),
);
}
}
class HomeScreen extends StatefulWidget {
const HomeScreen({Key? key}) : super(key: key);
@override
State<HomeScreen> createState() => _HomeScreenState();
}
class _HomeScreenState extends State<HomeScreen> {
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text("Home Screen"),
),
body: Column(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: const [
MarkdownAutoPreview(
decoration: InputDecoration(
hintText: 'Markdown Auto Preview',
),
emojiConvert: true,
// maxLines: 10,
// minLines: 1,
// expands: true,
),
SplittedMarkdownFormField(
decoration: InputDecoration(
hintText: 'Splitted Markdown FormField',
),
emojiConvert: true,
),
],
),
);
}
}