Refactor Dashboard

This commit is contained in:
世界
2025-11-26 22:25:51 +08:00
parent 2e2fc223bf
commit f6d14dbb8a
27 changed files with 773 additions and 742 deletions
@@ -55,4 +55,17 @@ public extension EnvironmentValues {
self[importProfileKey.self] = newValue
}
}
private struct cardConfigurationVersionKey: EnvironmentKey {
static var defaultValue: Int = 0
}
var cardConfigurationVersion: Int {
get {
self[cardConfigurationVersionKey.self]
}
set {
self[cardConfigurationVersionKey.self] = newValue
}
}
}