Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
be62a6b
feat: add EmptyScreen component
szuperaz Jun 11, 2026
26e5aaf
refactor: nav header
szuperaz Jun 11, 2026
b3d86ce
test: add missing test
szuperaz Jun 11, 2026
9c17152
feat: add pinned message list context
szuperaz Jun 11, 2026
fc1a641
fix: channel pinned messages is independent from channel details context
szuperaz Jun 11, 2026
7580950
feat: pinned message list screen
szuperaz Jun 11, 2026
c91d6c1
feat: finish pinned message list
szuperaz Jun 12, 2026
12805ba
feat: add file list and media list; add pinned message onPress
szuperaz Jun 12, 2026
91fea1c
fix: file attachment list filters scraped attachments
szuperaz Jun 12, 2026
1894305
refactor: clean up code for getting filtered attachments
szuperaz Jun 15, 2026
0dfe93e
fix: media item size; image gallery
szuperaz Jun 15, 2026
5979157
refactor: simpler solution for displaying image gallery
szuperaz Jun 15, 2026
82dfa93
feat: design fixes
szuperaz Jun 15, 2026
fe43ef5
fix: type issue in channel details screen
szuperaz Jun 15, 2026
80893c0
fix: remove legacy colors from sample app screens
szuperaz Jun 15, 2026
ecf3901
fix: unify style in sample app
szuperaz Jun 15, 2026
2312173
feat: use full screen modal for navigation items in channel details
szuperaz Jun 15, 2026
d8714ad
Merge branch 'develop' into channel-info-screens-part2
szuperaz Jun 15, 2026
dca2598
fix: unit tests
szuperaz Jun 15, 2026
f82c58f
fix: image gallery header center text alignment
szuperaz Jun 15, 2026
5f8a92f
Merge remote-tracking branch 'origin/develop' into channel-info-scree…
isekovanic Jun 16, 2026
0c43927
fix: theme bug
szuperaz Jun 16, 2026
c1e1eb8
fix: sort param in list contexts
szuperaz Jun 16, 2026
9899837
fix: imagemodal crash on android
szuperaz Jun 16, 2026
49d4f3f
fix: use ImageComponent to disaplay image
szuperaz Jun 16, 2026
1bdf8ed
fix: gallery image modal header animation glitch on iOS
szuperaz Jun 16, 2026
e8fae98
fix: isFileAttachments categorizes attachments with mime_type as file
szuperaz Jun 16, 2026
11da646
fix: spacing for details profile
szuperaz Jun 16, 2026
198581c
fix: avatar 2xl size
szuperaz Jun 16, 2026
1f55f54
fix: file attachment item style issues
szuperaz Jun 16, 2026
9031216
fix: x icon too small
szuperaz Jun 16, 2026
1f60fba
fix: x icon too short in channel edit image bottom sheet
szuperaz Jun 16, 2026
19b9f86
fix: add border radius to pressed state on channel details
szuperaz Jun 16, 2026
e070cdf
fix: call formatMessage before opening gallery
szuperaz Jun 16, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

222 changes: 0 additions & 222 deletions examples/SampleApp/src/components/EditGroupBottomSheet.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import type { ComponentOverrides } from 'stream-chat-react-native';
import { useTheme } from 'stream-chat-react-native';

import { CustomAttachmentPickerContent } from './AttachmentPickerContent';
import { ChannelDetailsNavigationSection } from './ChannelDetailsNavigationSection';
import { FastImageAdapter } from './FastImageAdapter';
import { MessageLocation } from './LocationSharing/MessageLocation';
import type { MessageOverlayBackdropConfigItem } from './SecretMenu';
Expand Down Expand Up @@ -45,7 +44,6 @@ export const useSampleAppComponentOverrides = (
useMemo<ComponentOverrides>(
() => ({
AttachmentPickerContent: CustomAttachmentPickerContent,
ChannelDetailsNavigationSection,
ChannelListHeaderNetworkDownIndicator: RenderNull,
ImageComponent: FastImageAdapter,
MessageLocation,
Expand Down
Loading
Loading