更新用户界面, 修复总复习

This commit is contained in:
2025-09-14 01:54:33 +08:00
parent 50a5b9b108
commit 19d0e32b6f
12 changed files with 93 additions and 49 deletions

View File

@@ -6,11 +6,11 @@ class AppLauncher(App):
TITLE = "潜进 - 辅助记忆程序"
BINDINGS = [("escape", "quit", "退出"), ("d", "toggle_dark", "改变色调")]
SCREENS = {
"file_selection_screen": screens.FileSelectorScreen,
"dashboard": screens.DashboardScreen,
}
def on_mount(self) -> None:
self.push_screen("file_selection_screen")
self.push_screen("dashboard")
if __name__ == "__main__":