withAppBar method

TestSuperEditorConfigurator withAppBar(
  1. double height
)

Configures the SuperEditor to display an AppBar with the given height above the SuperEditor.

If withCustomWidgetTreeBuilder is used, this setting is ignored.

Implementation

TestSuperEditorConfigurator withAppBar(double height) {
  _config.appBarHeight = height;
  return this;
}