修复动态发布与互动问题

This commit is contained in:
2026-06-23 18:43:03 +08:00
parent 702b578e1e
commit cda8685956
151 changed files with 4993 additions and 914 deletions

View File

@@ -1,5 +1,12 @@
export type MainTabKey = 'plaza' | 'nearby' | 'messages' | 'profile'
// Props the single-page host (pages/home) passes to each tab view: whether it is
// the visible tab, and a counter that bumps when the host returns to foreground.
export interface TabViewProps {
active?: boolean
showTick?: number
}
export interface TabConfig {
key: MainTabKey
label: string