disableNavigationbar property

bool disableNavigationbar
final

You can disable the navigation bar like this :

CodeEditor(
  model: model, // my EditorModel()
  disableNavigationbar: true, // hide the navigation bar
)

By default, the value is false.

WARNING : if you set the value to true, only the first file will be displayed in the editor because it's not possible to switch betweens other files without the navigation bar.

Implementation

final bool disableNavigationbar;