MarkdownEditor constructor
MarkdownEditor({
- Key? key,
- EdgeInsetsGeometry padding = const EdgeInsets.all(0.0),
- String? initTitle,
- String? initText,
- String? hintTitle,
- String? hintText,
- TapLinkCallback? onTapLink,
- ImageSelectCallback? imageSelect,
- TabChange? tabChange,
- VoidCallback? textChange,
- Color? actionIconColor = Colors.grey,
- Color? cursorColor,
- TextStyle? titleTextStyle,
- TextStyle? textStyle,
- TextStyle? hintTitleTextStyle,
- TextStyle? hintTextStyle,
- Widget? appendBottomWidget,
- ScrollPhysics? physics,
- Widget? splitWidget,
- required dynamic imageWidget,
- FocusNode? titleFocusNode,
- FocusNode? textFocusNode,
Implementation
MarkdownEditor({
Key? key,
this.padding = const EdgeInsets.all(0.0),
this.initTitle,
this.initText,
this.hintTitle,
this.hintText,
this.onTapLink,
this.imageSelect,
this.tabChange,
this.textChange,
this.actionIconColor = Colors.grey,
this.cursorColor,
this.titleTextStyle,
this.textStyle,
this.hintTitleTextStyle,
this.hintTextStyle,
this.appendBottomWidget,
this.physics,
this.splitWidget,
required this.imageWidget,
this.titleFocusNode,
this.textFocusNode,
}) : super(key: key);