feat: 登录过期自动续登并校验同一账号

This commit is contained in:
2026-08-07 02:53:03 +08:00
parent 0f3132b08e
commit 2182b6dfc9
39 changed files with 704 additions and 74 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ export default function ThemeToggle() {
return (
<View className='theme-toggle' onTap={handleToggle}>
<Text className='theme-icon'>{theme === 'light' ? '🌙' : '☀️'}</Text>
<Text className='theme-icon'>{theme === 'light' ? '深色' : '浅色'}</Text>
</View>
)
}