Usonov Adilet
Usonov Adilet
## Feature request Make right sidebar scrollable independently or static like [this docs](https://vuejs.org/guide/introduction.html) 
place: https://bevy-cheatbook.github.io/programming/states.html ### Conditional running use ✅ ```rust .add_systems(Update, handle_ui_buttons.run_if(in_state(AppState::MainMenu))) ``` instead of ❌ ```rust .add_system_set(SystemSet::on_update(AppState::MainMenu) .with_system(handle_ui_buttons) ) ``` ### On enter use ✅ ```rust .add_systems(OnEnter::(AppState::MainMenu), setup_menu) ``` instead of...
https://bevy-cheatbook.github.io/programming/system-sets.html#system-sets add_system_set function no longer exists in implementation of [App](https://docs.rs/bevy/0.10.0/bevy/app/struct.App.html) struct
### Version 0.12.9 ### Operating System Linux ### Distribution Method AppImage (Linux) ### Describe the issue  When I click login it stuck loading and on devtools it shows 401...