flutter_rich_text_pro 0.0.1
flutter_rich_text_pro: ^0.0.1 copied to clipboard
A powerful and customizable WYSIWYG rich text editor for Flutter with HTML and Markdown support.
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],
),