appBar property

ReactiveCustomAppbar? Function(EditorState editorState, Stream rebuildStream)? appBar
final

A custom app bar widget.

Example appBar: (editor, rebuildStream) => ReactiveCustomAppbar( stream: rebuildStream, builder: (_) => AppBar( title: const Text('Title'), ), ),

Implementation

final ReactiveCustomAppbar? Function(
    EditorState editorState, Stream rebuildStream)? appBar;