SplittedMarkdownFormField constructor

const SplittedMarkdownFormField({
  1. Key? key,
  2. TextEditingController? controller,
  3. ScrollController? scrollController,
  4. ValueChanged<String>? onChanged,
  5. TextStyle? style,
  6. VoidCallback? onTap,
  7. Color? cursorColor,
  8. Color? toolbarBackground,
  9. Color? expandableBackground,
  10. int? maxLines,
  11. int? minLines,
  12. String? validator(
    1. String?
    )?,
  13. AutovalidateMode? autovalidateMode,
  14. void onSaved(
    1. String?
    )?,
  15. String? markdownSyntax,
  16. bool readOnly = false,
  17. bool expands = false,
  18. bool emojiConvert = false,
  19. bool enableToolBar = true,
  20. bool showEmojiSelection = true,
  21. bool autoCloseAfterSelectEmoji = true,
  22. TextCapitalization textCapitalization = TextCapitalization.sentences,
  23. InputDecoration decoration = const InputDecoration(isDense: true),
})

Implementation

const SplittedMarkdownFormField({
  Key? key,
  this.controller,
  this.scrollController,
  this.onChanged,
  this.style,
  this.onTap,
  this.cursorColor,
  this.toolbarBackground,
  this.expandableBackground,
  this.maxLines,
  this.minLines,
  this.validator,
  this.autovalidateMode,
  this.onSaved,
  this.markdownSyntax,
  this.readOnly = false,
  this.expands = false,
  this.emojiConvert = false,
  this.enableToolBar = true,
  this.showEmojiSelection = true,
  this.autoCloseAfterSelectEmoji = true,
  this.textCapitalization = TextCapitalization.sentences,
  this.decoration = const InputDecoration(isDense: true),
}) : super(key: key);