configureMainWindow method

  1. @override
void configureMainWindow()
override

Implementation

@override
void configureMainWindow() {
  add(simpleNavBar);
  final verticalPanel = Panel()
    ..vertical = true
    ..fullSize()
    ..fillContent = true;
  add(verticalPanel);
  refreshNavPanel();
  onViewChange.listen((currentView) {
    simpleNavBar.refreshNavBar(currentView);
    simplePathPanel.refreshPathPanel(currentView);
  });
  verticalPanel.addAll([simplePathPanel, display]);
}