bottomBar property

(ReactiveCustomWidget<Widget>? Function(EditorState editorState, Stream rebuildStream)?) bottomBar
final

A custom bottom bar widget.

Example:

bottomBar: (editor, rebuildStream, key) {
  return ReactiveCustomWidget(
    stream: rebuildStream,
    builder: (_) => BottomAppBar(
      key: key,
      child: const Icon(Icons.abc),
    ),
  );
},

Implementation

final ReactiveCustomWidget? Function(
    EditorState editorState, Stream rebuildStream)? bottomBar;