🐛 Fix a view in charge to set the Login dimesions according to the screen aspect-ratio

This commit is contained in:
2024-04-22 14:55:20 +02:00
parent 6172167ea8
commit fcf3d92cf9
9 changed files with 279 additions and 206 deletions

View File

@@ -20,6 +20,7 @@ use crate::base::{login, sync_rooms};
use crate::base::{APP_SETTINGS, ROOMS, SESSION};
use crate::ui::components::login::Login;
use crate::ui::components::main_window::MainWindow;
use crate::ui::views::login_view::LoginView;
mod base;
@@ -92,7 +93,7 @@ fn app() -> Element {
}
} else {
rsx! {
Login {},
LoginView {},
}
}
}