fix tab switching state issues

- Add useFocusEffect to calendar for automatic event reload on tab focus
- Create ChatStore (Zustand) for persistent chat messages across tab switches
- Replace local useState with store in chat screen
This commit is contained in:
2026-01-04 17:40:40 +01:00
parent 1532acab78
commit 7c081787fe
5 changed files with 87 additions and 48 deletions

View File

@@ -1,2 +1,3 @@
export { useAuthStore } from "./AuthStore";
export { useChatStore, type MessageData } from "./ChatStore";
export { useEventsStore } from "./EventsStore";