appstate for form

This commit is contained in:
filipriec
2025-03-23 22:08:33 +01:00
parent 7caa4d8c3c
commit 2cf4cd6748
2 changed files with 6 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ pub struct UiState {
pub is_saved: bool,
pub show_intro: bool,
pub show_admin: bool,
pub show_form: bool,
}
pub struct GeneralState {
@@ -64,6 +65,7 @@ impl Default for UiState {
is_saved: false,
show_intro: true,
show_admin: false,
show_form: false,
}
}
}