configureMainWindow method
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]);
}