MarkdownField constructor
const
MarkdownField({
- Key? key,
- TextEditingController? controller,
- ScrollController? scrollController,
- ValueChanged<
String> ? onChanged, - TextStyle? style,
- bool emojiConvert = false,
- VoidCallback? onTap,
- TextCapitalization textCapitalization = TextCapitalization.sentences,
- bool readOnly = false,
- Color? cursorColor,
- FocusNode? focusNode,
- EdgeInsetsGeometry padding = const EdgeInsets.all(10),
Implementation
const MarkdownField({
Key? key,
this.controller,
this.scrollController,
this.onChanged,
this.style,
this.emojiConvert = false,
this.onTap,
this.textCapitalization = TextCapitalization.sentences,
this.readOnly = false,
this.cursorColor,
this.focusNode,
this.padding = const EdgeInsets.all(10),
}) : super(key: key);