feat(profile): add chat settings and language options to profile settings
- Introduced hrefProfileChatSettings() for navigation to chat settings. - Updated SettingsScreen to include new settings items for chat settings, language selection, data storage, terms, and privacy policy. - Enhanced user experience by providing alerts for language and data storage options. This update improves the profile settings interface by adding more customization options for users.
This commit is contained in:
27
src/stores/group/index.ts
Normal file
27
src/stores/group/index.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
/**
|
||||
* 群组模块统一导出
|
||||
*/
|
||||
|
||||
// ==================== Store ====================
|
||||
export {
|
||||
useGroupManagerStore,
|
||||
type GroupManagerState,
|
||||
type GroupManagerActions,
|
||||
type GroupManagerStore,
|
||||
} from './groupStore';
|
||||
|
||||
// ==================== Manager ====================
|
||||
export { groupManager, GroupManager } from './GroupManager';
|
||||
|
||||
// ==================== Hooks ====================
|
||||
export {
|
||||
useGroups,
|
||||
useGroup,
|
||||
useGroupMembers,
|
||||
type UseGroupsResult,
|
||||
type UseGroupResult,
|
||||
type UseGroupMembersResult,
|
||||
} from './hooks';
|
||||
|
||||
// ==================== 默认导出 ====================
|
||||
export { default } from './GroupManager';
|
||||
Reference in New Issue
Block a user