Don't load local card info by default, add user page, theme loading

This commit is contained in:
2024-09-05 00:59:51 -04:00
parent 20d7f62f33
commit 0a8091e843
11 changed files with 104 additions and 18 deletions

View File

@@ -14,6 +14,7 @@ pub enum ContentState {
None,
Inventory,
Tournaments,
User,
}
impl Display for ContentState {
@@ -24,6 +25,7 @@ impl Display for ContentState {
match self {
ContentState::Inventory => "Inventory",
ContentState::Tournaments => "Tournament",
ContentState::User => "User",
ContentState::None => "",
}
)