CustomWidgetsTextEditor constructor

const CustomWidgetsTextEditor({
  1. ReactiveCustomAppbar? appBar(
    1. TextEditorState editorState,
    2. Stream rebuildStream
    )?,
  2. ReactiveCustomWidget<Widget>? bottomBar(
    1. TextEditorState editorState,
    2. Stream rebuildStream
    )?,
  3. List<ReactiveCustomWidget<Widget>> bodyItems(
    1. TextEditorState editorState,
    2. Stream rebuildStream
    )?,
  4. CustomColorPicker<TextEditorState>? colorPicker,
  5. CustomSlider<TextEditorState>? sliderFontSize,
  6. Widget fontSizeCloseButton(
    1. TextEditorState editorState,
    2. dynamic tap()
    )?,
})

Implementation

const CustomWidgetsTextEditor({
  super.appBar,
  super.bottomBar,
  super.bodyItems,
  this.colorPicker,
  this.sliderFontSize,
  this.fontSizeCloseButton,
});