markdown-editable-textinput
markdown-editable-textinput copied to clipboard
MarkdownEditableTextInput is a TextField Widget that allow you to convert easily what's in the TextField to Markdown.
Hi, I would want buildCounter support in the same way as TextField. This implementation though would receive int currentMarkdownLength and int currentPlainTextLength. ``` typedef InputCounterWidgetBuilder = Widget? Function( BuildContext context,...
First I want to give thank you to create such a wonderful library. After testing I found the following issue in this library 1. When I am typing text after...
In Apollo you can see the effective formatting like **bold** *cursive* and [links](Example.com) as you type. - any Chance 1. to also support this > in this Plugin? 
This PR adds the ability to set the URL directly using this package.
The style of the TextFormField was recently changed to bodyText1. Now you can provide a style if you want.
The outside TextEditingController should not be disposed of in the inner of _MarkdownTextInputState, because the outside controller may have its life cycle. In my case, I use markdown-editable-text input and...