We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should reformat the code to make it more scalable and easy to navigate for new joiners.
lib/ │ ├── app/ │ │ │ ├── flows/ │ │ ├── nav/ │ │ │ ├── flows_nav_item.dart │ │ │ └── flows_nav.dart │ │ ├── pages/ │ │ │ ├── flows_page.dart │ │ │ └── providers.dart │ │ └- providers.dart │ │ │ │ │ ├── stages/ │ │ ├── nav/ │ │ │ ├── stages_nav_item.dart │ │ │ └── stages_nav.dart │ │ ├── pages/ │ │ │ ├── stages_page.dart │ │ │ └── providers.dart │ │ └- providers.dart │ │ │ │ │ ├── home/ │ │ ├── home.dart │ │ ├── nav.dart │ │ ├── page_area.dart │ │ └── providers.dart │ │ │ │ │ ├── settings/ │ │ ├── nav/ │ │ │ └── ... │ │ ├── pages/ │ │ │ └── ... │ │ ├── settings_home.dart │ │ └── providers.dart │ │ │ │ │ └── app.dart │ │ │ ├── core/ │ │ │ ├── config/ │ │ │ │ │ ├── domain/ │ │ ├── flows/ │ │ │ ├── services/ │ │ │ │ ├── flow_service.dart │ │ │ │ └── flow_runs_service.dart │ │ │ ├── models/ │ │ │ │ ├── flow.dart │ │ │ │ ├── flow_runs.dart │ │ │ │ └── ... │ │ │ └── providers.dart │ │ │ │ │ │ │ │ ├── stages/ │ │ │ ├── services/ │ │ │ │ ├── stage_service.dart │ │ │ │ └── stage_runs_service.dart │ │ │ ├── models/ │ │ │ │ ├── stage.dart │ │ │ │ ├── stage_runs.dart │ │ │ │ └── ... │ │ │ └── providers.dart │ │ │ │ │ │ │ │ ├── logs/ │ │ │ ├── services/ │ │ │ │ ├── logger.dart │ │ │ │ └── log_manager.dart │ │ │ ├── models/ │ │ │ │ ├── log.dart │ │ │ │ ├── log_level.dart │ │ │ │ └── ... │ │ │ └── providers.dart │ │ │ │ │ │ │ │ └── servers/ │ │ ├── services/ │ │ │ ├── server_connector.dart │ │ │ └── server_service.dart │ │ ├── model/ │ │ │ ├── server.dart │ │ │ ├── embedded_server.dart │ │ │ ├── remote_server.dart │ │ │ └── ... │ │ └── providers.dart │ │ │ │ │ ├── utils/ │ │ ├── icons/ │ │ │ └── font_icons/ │ │ │ ├── items/ │ │ │ │ ├── items-config.json │ │ │ │ └── items_icons.dart │ │ │ └── bulo_logo/ │ │ │ ├── bulo-logo-config.json │ │ │ └── bulo_logo_icons.dart │ │ ├── extensions/ │ │ │ └── string_extension.dart │ │ └── current_system.dart │ │ │ │ │ └── widgets/ │ ├── cards/ │ │ └── ... │ ├── extensions/ │ │ └── neumorphic_extension.dart │ ├── forms/ │ │ └── ... │ ├── interactions/ │ │ ├── popup/ │ │ │ ├── bulo_popup_menu.dart │ │ │ └── bulo_popup_menu_items.dart │ │ │ │ │ ├── buttons/ │ │ │ ├── action_button.dart │ │ │ └── error_button.dart │ │ │ │ │ └── clickable.dart │ ├── modals/ │ │ └── modal_framework.dart │ └── splitters/ │ └── ... │ │ └──main.dart
Also read about Feature first and consider doing it
The text was updated successfully, but these errors were encountered:
JulienElkaim
Brigouleix
No branches or pull requests
Should reformat the code to make it more scalable and easy to navigate for new joiners.
Also read about Feature first and consider doing it
The text was updated successfully, but these errors were encountered: