[Chat] NUX (#10848)

Co-authored-by: DS Boyce <260543580+ds-boyce@users.noreply.github.com>
Co-authored-by: Eric Bailey <git@esb.lol>
This commit is contained in:
Samuel Newman
2026-06-10 22:35:35 +03:00
committed by GitHub
parent 2d896983ab
commit 2efdc3fe35
14 changed files with 404 additions and 60 deletions
+15 -3
View File
@@ -110,7 +110,11 @@ export type MyProfileTabNavigatorParams = CommonNavigatorParams & {
}
export type MessagesTabNavigatorParams = CommonNavigatorParams & {
Messages: {pushToConversation?: string; animation?: 'push' | 'pop'}
Messages: {
pushToConversation?: string
pushToNewGroupChat?: boolean
animation?: 'push' | 'pop'
}
}
export type FlatNavigatorParams = CommonNavigatorParams & {
@@ -118,7 +122,11 @@ export type FlatNavigatorParams = CommonNavigatorParams & {
Search: {q?: string; tab?: 'user' | 'profile' | 'feed'}
Feeds: undefined
Notifications: undefined
Messages: {pushToConversation?: string; animation?: 'push' | 'pop'}
Messages: {
pushToConversation?: string
pushToNewGroupChat?: boolean
animation?: 'push' | 'pop'
}
}
export type AllNavigatorParams = CommonNavigatorParams & {
@@ -131,7 +139,11 @@ export type AllNavigatorParams = CommonNavigatorParams & {
Notifications: undefined
MyProfileTab: undefined
MessagesTab: undefined
Messages: {pushToConversation?: string; animation?: 'push' | 'pop'}
Messages: {
pushToConversation?: string
pushToNewGroupChat?: boolean
animation?: 'push' | 'pop'
}
}
// NOTE