Flutter Rich Text Editor
A powerful and customizable WYSIWYG rich text editor for Flutter. Supports text formatting, alignment, lists, links, image insertion, and exporting as HTML or Markdown.
📌 Features
✅ Text Formatting – Bold, Italic, Underline, Strikethrough
✅ Text Alignment – Left, Center, Right, Justify
✅ Lists – Bullet points & Numbered lists
✅ Hyperlinks & Images – Add and format links & images
✅ Customizable Fonts & Sizes
✅ Export as HTML/Markdown
✅ Cross-Platform – Works on Android, iOS, and Web
🚀 Installation
Add this package to your pubspec.yaml:
dependencies:
flutter_rich_text_editor: ^0.0.1
## 📌 Use it in your app:
CustomRichTextEditor(
onTextChanged: (){},
maxLength: 200,
primaryColor: Colors.teal.withOpacity(0.8),
borderColor: Colors.teal,
height: 150,
availableFonts: const ['OpenSans', 'Nunito', 'Poppins'],
availableSizes: const [12, 14, 16, 18, 24, 36, 48, 72],
),