Flutter Rich Text Editor

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],
        ),