├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── bootstrap │ │ └── action.yml │ ├── ruby-cache │ │ └── action.yml │ ├── setup-ios-runtime │ │ └── action.yml │ └── xcode-cache │ │ └── action.yml ├── stale.yml └── workflows │ ├── cron-checks.yml │ ├── record-snapshots.yml │ ├── release-merge.yml │ ├── release-publish.yml │ ├── release-start.yml │ ├── sdk-size-metrics.yml │ ├── smoke-checks.yml │ ├── sonar.yml │ ├── testflight.yml │ └── update-copyright.yml ├── .gitignore ├── .slather.yml ├── .spi.yml ├── .swiftformat ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Dangerfile ├── DemoAppSwiftUI ├── AppConfiguration │ ├── AppConfiguration.swift │ ├── AppConfigurationTranslationView.swift │ └── AppConfigurationView.swift ├── AppDelegate.swift ├── AppleMessageComposerView.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 100.png │ │ ├── 114.png │ │ ├── 120.png │ │ ├── 144.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 20.png │ │ ├── 29.png │ │ ├── 40.png │ │ ├── 50.png │ │ ├── 57.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 72.png │ │ ├── 76.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── Contents.json │ │ └── appstore-2.png │ ├── Contents.json │ ├── STREAMMARK.imageset │ │ ├── Contents.json │ │ └── STREAMMARK.pdf │ ├── stream_wave.imageset │ │ ├── Contents.json │ │ └── stream_wave.pdf │ ├── wave.imageset │ │ ├── Contents.json │ │ └── wave.pdf │ ├── wave_bottom.imageset │ │ ├── Contents.json │ │ └── wave_bottom.pdf │ └── wave_top.imageset │ │ ├── Contents.json │ │ └── wave_top.pdf ├── ChannelHeader │ ├── BlockedUsersView.swift │ ├── BlockedUsersViewModel.swift │ ├── ChannelListQueryIdentifier.swift │ ├── ChooseChannelQueryView.swift │ ├── CustomChannelHeader.swift │ ├── NewChatView.swift │ └── NewChatViewModel.swift ├── CreateGroupView.swift ├── CreateGroupViewModel.swift ├── CustomAttachment.swift ├── CustomComposerAttachmentView.swift ├── DemoAppSwiftUI.entitlements ├── DemoAppSwiftUIApp.swift ├── DemoUser.swift ├── GroupNameView.swift ├── Info.plist ├── LaunchAnimationState.swift ├── LaunchScreen.swift ├── Localizable.strings ├── LoginView.swift ├── LoginViewModel.swift ├── NotificationsHandler.swift ├── PinChannelHelpers.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── SceneDelegate.swift ├── UserRepository.swift ├── ViewFactoryExamples.swift ├── WhatsAppChannelHeader.swift └── iMessagePocView.swift ├── Gemfile ├── Gemfile.lock ├── Githubfile ├── LICENSE ├── Makefile ├── Mintfile ├── Package.swift ├── PrivacyInfo.xcprivacy ├── README.md ├── ReadmeAssets ├── ChannelListPreview.gif ├── Channel_Creation_Bezel.png ├── Channel_List_Bezel.png ├── Commands_Bezel.png ├── Low_Level_SDK.png ├── Mentions_Bezel.png ├── MessageListPreview.gif ├── Message_Composer_Bezels.png ├── Message_List_Bezel.png └── iOS_Chat_Messaging.png ├── SECURITY.md ├── Scripts ├── GenerateSPMFileLists.swift ├── addImagesToDocumentation.sh ├── bootstrap.sh ├── createPropFiles.sh ├── deleteDuplicates.sh ├── generateDocumentation.sh ├── generateSidebar.js ├── install_ios_runtime.sh ├── removePublicDeclarations.sh ├── removeUnneededSymbols.sh ├── renameToKebabCase.js ├── run-linter.sh └── updateDependency.sh ├── Sources └── StreamChatSwiftUI │ ├── .swiftgen.yml │ ├── Appearance.swift │ ├── ChatChannel │ ├── BouncedMessageActionsModifier.swift │ ├── ChannelControllerFactory.swift │ ├── ChannelHeader │ │ ├── ChatChannelHeaderViewModifier.swift │ │ ├── MessageThreadHeaderViewModifier.swift │ │ └── TypingIndicatorPlacement.swift │ ├── ChannelInfo │ │ ├── AddUsersView.swift │ │ ├── AddUsersViewModel.swift │ │ ├── ChatChannelInfoHelperViews.swift │ │ ├── ChatChannelInfoView.swift │ │ ├── ChatChannelInfoViewModel.swift │ │ ├── ChatInfoParticipantsView.swift │ │ ├── FileAttachmentsView.swift │ │ ├── FileAttachmentsViewModel.swift │ │ ├── MediaAttachmentsView.swift │ │ ├── MediaAttachmentsViewModel.swift │ │ ├── PinnedMessagesView.swift │ │ └── PinnedMessagesViewModel.swift │ ├── ChatChannelDataSource.swift │ ├── ChatChannelScreen.swift │ ├── ChatChannelView.swift │ ├── ChatChannelViewModel.swift │ ├── Composer │ │ ├── AddedFileAttachmentsView.swift │ │ ├── AddedImageAttachmentsView.swift │ │ ├── AttachmentPickerTypeView.swift │ │ ├── AttachmentPickerView.swift │ │ ├── AttachmentUploadingStateView.swift │ │ ├── ComposerConfig.swift │ │ ├── ComposerHelperViews.swift │ │ ├── ComposerModels.swift │ │ ├── ComposerTextInputView.swift │ │ ├── DiscardAttachmentButton.swift │ │ ├── FilePickerView.swift │ │ ├── ImagePickerView.swift │ │ ├── MessageComposerView.swift │ │ ├── MessageComposerViewModel+Recording.swift │ │ ├── MessageComposerViewModel.swift │ │ ├── PhotoAssetsUtils.swift │ │ ├── PhotoAttachmentPickerView.swift │ │ ├── SendInChannelView.swift │ │ ├── SendMessageButton.swift │ │ ├── SlowModeView.swift │ │ ├── Suggestions │ │ │ ├── CommandsConfig.swift │ │ │ ├── CommandsContainerView.swift │ │ │ ├── CommandsHandler.swift │ │ │ ├── InstantCommands │ │ │ │ ├── GiphyCommandHandler.swift │ │ │ │ ├── InstantCommandsHandler.swift │ │ │ │ ├── InstantCommandsView.swift │ │ │ │ ├── MuteCommandHandler.swift │ │ │ │ ├── TwoStepMentionCommand.swift │ │ │ │ └── UnmuteCommandHandler.swift │ │ │ ├── Mentions │ │ │ │ ├── MentionUsersView.swift │ │ │ │ └── MentionsCommandHandler.swift │ │ │ └── TypingSuggester.swift │ │ ├── TrailingComposerView.swift │ │ └── VoiceRecording │ │ │ ├── AddedVoiceRecordingsView.swift │ │ │ ├── AudioSessionFeedbackGenerator.swift │ │ │ ├── LockedView.swift │ │ │ ├── RecordingConstants.swift │ │ │ ├── RecordingDurationView.swift │ │ │ ├── RecordingState.swift │ │ │ ├── RecordingTipView.swift │ │ │ ├── RecordingView.swift │ │ │ └── RecordingWaveform.swift │ ├── Gallery │ │ ├── GalleryView.swift │ │ ├── GridPhotosView.swift │ │ ├── ShareButtonView.swift │ │ ├── VideoPlayerView.swift │ │ └── ZoomableScrollView.swift │ ├── MessageList │ │ ├── AsyncVoiceMessages │ │ │ ├── AudioRecordingNameFormatter.swift │ │ │ ├── AudioVisualizationView.swift │ │ │ ├── VideoDurationFormatter.swift │ │ │ ├── VoiceRecordingContainerView.swift │ │ │ └── WaveformView.swift │ │ ├── BottomReactionsView.swift │ │ ├── DeletedMessageView.swift │ │ ├── FileAttachmentPreview.swift │ │ ├── FileAttachmentView.swift │ │ ├── GiphyAttachmentView.swift │ │ ├── GiphyBadgeView.swift │ │ ├── ImageAttachmentView.swift │ │ ├── JumpToUnreadButton.swift │ │ ├── LinkAttachmentView.swift │ │ ├── LinkTextView.swift │ │ ├── MessageAvatarView.swift │ │ ├── MessageBubble.swift │ │ ├── MessageContainerView.swift │ │ ├── MessageIdBuilder.swift │ │ ├── MessageListConfig.swift │ │ ├── MessageListDateUtils.swift │ │ ├── MessageListHelperViews.swift │ │ ├── MessageListView.swift │ │ ├── MessageRepliesView.swift │ │ ├── MessageTranslationFooterView.swift │ │ ├── MessageTypeResolver.swift │ │ ├── MessageView.swift │ │ ├── MessageViewModel.swift │ │ ├── Polls │ │ │ ├── PollAllOptionsView.swift │ │ │ ├── PollAttachmentView.swift │ │ │ ├── PollAttachmentViewModel.swift │ │ │ ├── PollCommentsView.swift │ │ │ ├── PollCommentsViewModel.swift │ │ │ ├── PollOptionAllVotesView.swift │ │ │ ├── PollOptionAllVotesViewModel.swift │ │ │ ├── PollResultsView.swift │ │ │ ├── PollsConfig.swift │ │ │ └── PollsHelpers.swift │ │ ├── QuotedMessageView.swift │ │ ├── ReactionsIconProvider.swift │ │ ├── SystemMessageView.swift │ │ ├── VideoAttachmentView.swift │ │ └── WebView.swift │ ├── Polls │ │ ├── CreatePollView.swift │ │ └── CreatePollViewModel.swift │ ├── Reactions │ │ ├── MessageActions │ │ │ ├── DefaultMessageActions.swift │ │ │ ├── MessageActionsResolver.swift │ │ │ ├── MessageActionsView.swift │ │ │ └── MessageActionsViewModel.swift │ │ ├── ReactionUserView.swift │ │ ├── ReactionsBubbleView.swift │ │ ├── ReactionsHelperViews.swift │ │ ├── ReactionsOverlayContainer.swift │ │ ├── ReactionsOverlayView.swift │ │ ├── ReactionsOverlayViewModel.swift │ │ ├── ReactionsUsersView.swift │ │ ├── ReactionsUsersViewModel.swift │ │ └── ReactionsView.swift │ └── Utils │ │ ├── ChatChannelExtensions.swift │ │ ├── ChatChannelHelpers.swift │ │ ├── Throttler.swift │ │ └── URLExtensions.swift │ ├── ChatChannelList │ ├── ChannelAvatarsMerger.swift │ ├── ChannelHeaderLoader.swift │ ├── ChannelListConfig.swift │ ├── ChatChannelHelperViews.swift │ ├── ChatChannelList.swift │ ├── ChatChannelListHeader.swift │ ├── ChatChannelListItem.swift │ ├── ChatChannelListScreen.swift │ ├── ChatChannelListView.swift │ ├── ChatChannelListViewModel.swift │ ├── ChatChannelNavigatableListItem.swift │ ├── ChatChannelSwipeableListItem.swift │ ├── DefaultChannelActions.swift │ ├── MoreChannelActionsFullScreenWrappingView.swift │ ├── MoreChannelActionsView.swift │ ├── MoreChannelActionsViewModel.swift │ ├── NoChannelsView.swift │ └── SearchResultsView.swift │ ├── ChatThreadList │ ├── ChatThreadList.swift │ ├── ChatThreadListErrorBannerView.swift │ ├── ChatThreadListFooterView.swift │ ├── ChatThreadListHeaderView.swift │ ├── ChatThreadListHeaderViewModifier.swift │ ├── ChatThreadListItem.swift │ ├── ChatThreadListLoadingView.swift │ ├── ChatThreadListNavigatableItem.swift │ ├── ChatThreadListView.swift │ ├── ChatThreadListViewModel.swift │ └── NoThreadsView.swift │ ├── ColorPalette.swift │ ├── CommonViews │ ├── ActionBannerView.swift │ ├── ActionItemView.swift │ ├── AlertBannerViewModifier.swift │ ├── DelayedRenderingViewModifier.swift │ ├── DiscardButtonView.swift │ ├── FloatingBannerViewModifier.swift │ ├── GalleryHeaderView.swift │ ├── LoadingView.swift │ ├── NoContentView.swift │ ├── SearchBar.swift │ ├── Shimmer.swift │ ├── TitleWithCloseButton.swift │ └── TypingIndicatorView.swift │ ├── DefaultViewFactory.swift │ ├── DependencyInjection.swift │ ├── Fonts.swift │ ├── Generated │ ├── L10n.swift │ ├── L10n_template.stencil │ └── SystemEnvironment+Version.swift │ ├── Images.swift │ ├── Info.plist │ ├── InjectedValuesExtensions.swift │ ├── README.md │ ├── Resources │ ├── Assets.xcassets │ │ ├── Attachments │ │ │ ├── Contents.json │ │ │ ├── Previews │ │ │ │ ├── 7z.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_7z.pdf │ │ │ │ ├── Contents.json │ │ │ │ ├── aac.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── aac.pdf │ │ │ │ ├── csv.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_csv.pdf │ │ │ │ ├── doc.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_doc.pdf │ │ │ │ ├── docx.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_docx.pdf │ │ │ │ ├── generic.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_generic.pdf │ │ │ │ ├── html.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_html.pdf │ │ │ │ ├── md.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_md.pdf │ │ │ │ ├── mp3.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_mp3.pdf │ │ │ │ ├── odt.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_odt.pdf │ │ │ │ ├── pdf.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_pdf.pdf │ │ │ │ ├── ppt.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_ppt.pdf │ │ │ │ ├── pptx.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_pptx.pdf │ │ │ │ ├── rar.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_rar.pdf │ │ │ │ ├── rtf.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_rtf.pdf │ │ │ │ ├── tar.gz.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_tar.gz.pdf │ │ │ │ ├── txt.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_txt.pdf │ │ │ │ ├── xls.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_xls.pdf │ │ │ │ ├── xlsx.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_xlsx.pdf │ │ │ │ └── zip.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── filetype_zip.pdf │ │ │ └── attachment_picker_polls.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── attachment_picker_polls.pdf │ │ ├── Contents.json │ │ ├── Message Actions │ │ │ ├── Contents.json │ │ │ ├── icn_block_user.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icn_block_user.pdf │ │ │ ├── icn_copy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icn_copy.pdf │ │ │ ├── icn_delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icn_delete.pdf │ │ │ ├── icn_edit.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icn_edit.pdf │ │ │ ├── icn_inline_reply.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icn_inline_reply.pdf │ │ │ ├── icn_mute_user.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icn_mute_user.pdf │ │ │ ├── icn_resend.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icn_resend.pdf │ │ │ └── icn_thread_reply.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icn_thread_reply.pdf │ │ ├── Message Composer │ │ │ └── Contents.json │ │ ├── Reactions │ │ │ ├── Contents.json │ │ │ ├── reaction_lol_big.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_LOL_reaction.pdf │ │ │ ├── reaction_lol_small.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_LOL_reaction.pdf │ │ │ ├── reaction_love_big.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_love_reaction.pdf │ │ │ ├── reaction_love_small.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_heart-1.pdf │ │ │ ├── reaction_thumbsdown_big.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_thumbs up_reaction-1.pdf │ │ │ ├── reaction_thumbsdown_small.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_thumbs up_reaction.pdf │ │ │ ├── reaction_thumbsup_big.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_thumbs up_reaction.pdf │ │ │ ├── reaction_thumbsup_small.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_heart.pdf │ │ │ ├── reaction_wut_big.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_wut_reaction.pdf │ │ │ └── reaction_wut_small.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Icon_wut_reaction.pdf │ │ ├── Suggestions Icons │ │ │ ├── Contents.json │ │ │ ├── command_ban.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_ban.pdf │ │ │ ├── command_fallback.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_fallback.pdf │ │ │ ├── command_flag.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_flag.pdf │ │ │ ├── command_giphy.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_giphy.pdf │ │ │ ├── command_imgur.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_imgur.pdf │ │ │ ├── command_mention.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_mention.pdf │ │ │ ├── command_mute.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_mute.pdf │ │ │ ├── command_unban.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_unban.pdf │ │ │ └── command_unmute.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── command_unmute.pdf │ │ ├── arrow_down.imageset │ │ │ ├── Contents.json │ │ │ └── arrow_down.pdf │ │ ├── arrow_send.imageset │ │ │ ├── Contents.json │ │ │ └── sendMessageArrow.pdf │ │ ├── arrow_shrink_input.imageset │ │ │ ├── Contents.json │ │ │ └── shrinkInputArrow.pdf │ │ ├── bolt.imageset │ │ │ ├── Contents.json │ │ │ └── bolt.pdf │ │ ├── bolt_small.imageset │ │ │ ├── Contents.json │ │ │ └── Icon_lightning-command runner.pdf │ │ ├── camera.imageset │ │ │ ├── Contents.json │ │ │ └── camera.pdf │ │ ├── checkmark_confirm.imageset │ │ │ ├── Contents.json │ │ │ └── editMessageCheckmark.pdf │ │ ├── checkmark_confirm_big.imageset │ │ │ ├── Contents.json │ │ │ └── uploaded.pdf │ │ ├── checkmark_double.imageset │ │ │ ├── Contents.json │ │ │ └── doubleCheckmark.pdf │ │ ├── checkmark_grey.imageset │ │ │ ├── Contents.json │ │ │ └── checkmark.pdf │ │ ├── checkmark_white.imageset │ │ │ ├── Contents.json │ │ │ └── threadCheckmark.pdf │ │ ├── clip.imageset │ │ │ ├── Contents.json │ │ │ └── clip.pdf │ │ ├── close.imageset │ │ │ ├── Contents.json │ │ │ └── Icon_close.pdf │ │ ├── close_circle_filled.imageset │ │ │ ├── Contents.json │ │ │ └── discardAttachment.pdf │ │ ├── close_circle_transparent.imageset │ │ │ ├── Contents.json │ │ │ └── dismissInCircle.pdf │ │ ├── download.imageset │ │ │ ├── Contents.json │ │ │ └── download.pdf │ │ ├── error_indicator.imageset │ │ │ ├── Contents.json │ │ │ └── error_indicator.pdf │ │ ├── eye.imageset │ │ │ ├── Contents.json │ │ │ └── eye.pdf │ │ ├── folder.imageset │ │ │ ├── Contents.json │ │ │ └── Icon_folder.pdf │ │ ├── icn_back.imageset │ │ │ ├── Contents.json │ │ │ └── icn_back.pdf │ │ ├── icn_more.imageset │ │ │ ├── Contents.json │ │ │ └── Union.pdf │ │ ├── icn_pin.imageset │ │ │ ├── Contents.json │ │ │ └── pin.pdf │ │ ├── icn_search.imageset │ │ │ ├── Contents.json │ │ │ └── icn_search.pdf │ │ ├── loading_indicator.imageset │ │ │ ├── Contents.json │ │ │ └── loading_indicator.pdf │ │ ├── message_receipt_sending.imageset │ │ │ ├── Contents.json │ │ │ └── Union.pdf │ │ ├── pattern1.imageset │ │ │ ├── Contents.json │ │ │ └── pattern1.pdf │ │ ├── pattern2.imageset │ │ │ ├── Contents.json │ │ │ └── pattern2.pdf │ │ ├── pattern3.imageset │ │ │ ├── Contents.json │ │ │ └── pattern3.pdf │ │ ├── pattern4.imageset │ │ │ ├── Contents.json │ │ │ └── pattern4.pdf │ │ ├── pattern5.imageset │ │ │ ├── Contents.json │ │ │ └── pattern5.pdf │ │ ├── pause.imageset │ │ │ ├── Contents.json │ │ │ └── pause.pdf │ │ ├── play.imageset │ │ │ ├── Contents.json │ │ │ └── play.pdf │ │ ├── play_big.imageset │ │ │ ├── Contents.json │ │ │ └── play.pdf │ │ ├── restart.imageset │ │ │ ├── Contents.json │ │ │ └── restart.pdf │ │ ├── share.imageset │ │ │ ├── Contents.json │ │ │ └── icon_share.pdf │ │ └── sliderThumb.imageset │ │ │ ├── Contents.json │ │ │ └── sliderThumb.pdf │ └── en.lproj │ │ ├── Localizable.strings │ │ └── Localizable.stringsdict │ ├── SDKIdentifier.swift │ ├── StreamChat.swift │ ├── StreamChatSwiftUI.h │ ├── StreamNuke │ ├── Nuke │ │ ├── Caching │ │ │ ├── DataCache.swift │ │ │ ├── DataCaching.swift │ │ │ ├── ImageCache.swift │ │ │ ├── ImageCaching.swift │ │ │ └── NukeCache.swift │ │ ├── Decoding │ │ │ ├── AssetType.swift │ │ │ ├── ImageDecoderRegistry.swift │ │ │ ├── ImageDecoders+Default.swift │ │ │ ├── ImageDecoders+Empty.swift │ │ │ ├── ImageDecoders+Video.swift │ │ │ └── ImageDecoding.swift │ │ ├── Encoding │ │ │ ├── ImageEncoders+Default.swift │ │ │ ├── ImageEncoders+ImageIO.swift │ │ │ ├── ImageEncoders.swift │ │ │ └── ImageEncoding.swift │ │ ├── ImageContainer.swift │ │ ├── ImageRequest.swift │ │ ├── ImageResponse.swift │ │ ├── ImageTask.swift │ │ ├── Internal │ │ │ ├── AVDataAsset.swift │ │ │ ├── Allocations.swift │ │ │ ├── DataPublisher.swift │ │ │ ├── Deprecated.swift │ │ │ ├── Extensions.swift │ │ │ ├── Graphics.swift │ │ │ ├── ImagePublisher.swift │ │ │ ├── ImageRequestKeys.swift │ │ │ ├── LinkedList.swift │ │ │ ├── Log.swift │ │ │ ├── Operation.swift │ │ │ ├── RateLimiter.swift │ │ │ └── ResumableData.swift │ │ ├── Loading │ │ │ ├── DataLoader.swift │ │ │ └── DataLoading.swift │ │ ├── Pipeline │ │ │ ├── ImagePipeline.swift │ │ │ ├── ImagePipelineCache.swift │ │ │ ├── ImagePipelineConfiguration.swift │ │ │ ├── ImagePipelineDelegate.swift │ │ │ └── ImagePipelineError.swift │ │ ├── Prefetching │ │ │ └── ImagePrefetcher.swift │ │ ├── Processing │ │ │ ├── ImageDecompression.swift │ │ │ ├── ImageProcessing.swift │ │ │ ├── ImageProcessingOptions.swift │ │ │ ├── ImageProcessors+Anonymous.swift │ │ │ ├── ImageProcessors+Circle.swift │ │ │ ├── ImageProcessors+Composition.swift │ │ │ ├── ImageProcessors+CoreImage.swift │ │ │ ├── ImageProcessors+GaussianBlur.swift │ │ │ ├── ImageProcessors+Resize.swift │ │ │ ├── ImageProcessors+RoundedCorners.swift │ │ │ └── ImageProcessors.swift │ │ └── Tasks │ │ │ ├── AsyncTask.swift │ │ │ ├── ImagePipelineTask.swift │ │ │ ├── OperationTask.swift │ │ │ ├── TaskFetchDecodedImage.swift │ │ │ ├── TaskFetchOriginalImageData.swift │ │ │ ├── TaskFetchWithPublisher.swift │ │ │ ├── TaskLoadData.swift │ │ │ └── TaskLoadImage.swift │ ├── NukeExtensions │ │ ├── ImageLoadingOptions.swift │ │ └── ImageViewExtensions.swift │ └── NukeUI │ │ ├── AnimatedImageView.swift │ │ ├── FetchImage.swift │ │ ├── Gifu │ │ ├── Classes │ │ │ ├── AnimatedFrame.swift │ │ │ ├── Animator.swift │ │ │ ├── FrameStore.swift │ │ │ ├── GIFAnimatable.swift │ │ │ └── GIFImageView.swift │ │ ├── Extensions │ │ │ ├── Array.swift │ │ │ ├── CGSize.swift │ │ │ ├── UIImage.swift │ │ │ └── UIImageView.swift │ │ └── Helpers │ │ │ └── ImageSourceHelpers.swift │ │ ├── Image.swift │ │ ├── ImageView.swift │ │ ├── Internal.swift │ │ ├── LazyImage.swift │ │ ├── LazyImageState.swift │ │ ├── LazyImageView.swift │ │ └── NukeVideoPlayerView.swift │ ├── StreamSwiftyGif │ ├── NSImage+SwiftyGif.swift │ ├── NSImageView+SwiftyGif.swift │ ├── ObjcAssociatedWeakObject.swift │ ├── SwiftyGifManager.swift │ ├── UIImage+SwiftyGif.swift │ └── UIImageView+SwiftyGif.swift │ ├── Utils.swift │ ├── Utils │ ├── BundleExtensions.swift │ ├── Common │ │ ├── AttributedString+Extensions.swift │ │ ├── AutoLayoutHelpers.swift │ │ ├── Cache.swift │ │ ├── ChatChannelNamer.swift │ │ ├── ChatClient+Extensions.swift │ │ ├── ChatMessage+Extensions.swift │ │ ├── ChatMessageReactionAppeareance.swift │ │ ├── ChatUserNamer.swift │ │ ├── DateFormatter+Extensions.swift │ │ ├── DateUtils.swift │ │ ├── FileCDN.swift │ │ ├── ImageCDN.swift │ │ ├── ImageMerger.swift │ │ ├── InputTextView.swift │ │ ├── MessageRelativeDateFormatter.swift │ │ ├── NSLayoutConstraint+Extensions.swift │ │ ├── NukeImageProcessor.swift │ │ ├── OnLoadViewModifier.swift │ │ ├── Publisher+Extensions.swift │ │ ├── UIColor+Extensions.swift │ │ ├── UIFont+Extensions.swift │ │ ├── UIImage+Extensions.swift │ │ ├── UIView+AccessibilityIdentifier.swift │ │ └── VideoPreviewLoader.swift │ ├── Errors.swift │ ├── HideTabBarModifier.swift │ ├── ImageLoading.swift │ ├── KeyboardHandling.swift │ ├── LazyImageExtensions.swift │ ├── LazyView.swift │ ├── MarkdownFormatter.swift │ ├── MessageCachingUtils.swift │ ├── MessagePreviewFormatter.swift │ ├── Modifiers.swift │ ├── NavigationContainerView.swift │ ├── NukeImageLoader.swift │ ├── SnapshotCreator.swift │ ├── StreamLazyImage.swift │ ├── StringExtensions.swift │ ├── SwiftUI+UIAlertController.swift │ └── ViewExtensions.swift │ ├── ViewFactory.swift │ └── ViewModelsFactory.swift ├── StreamChatSwiftUI-XCFramework.podspec ├── StreamChatSwiftUI.podspec ├── StreamChatSwiftUI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ │ ├── DemoAppSwiftUI.xcscheme │ │ ├── StreamChatSwiftUI.xcscheme │ │ └── StreamChatSwiftUITestsApp.xcscheme └── xcuserdata │ └── martinmitrevski.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── StreamChatSwiftUIArtifacts.json ├── StreamChatSwiftUITests ├── Infrastructure │ ├── Mocks │ │ ├── APIClient_Mock.swift │ │ ├── AnyEndpoint.swift │ │ ├── CDNClient_Mock.swift │ │ ├── ChatMessageControllerSUI_Mock.swift │ │ ├── EventBatcherMock.swift │ │ ├── EventNotificationCenterMock.swift │ │ ├── ImageLoader_Mock.swift │ │ ├── InternetConnectionMock.swift │ │ ├── MockBackgroundTaskScheduler.swift │ │ ├── MockNetworkURLProtocol.swift │ │ ├── Poll_Mock.swift │ │ ├── RequestRecorderURLProtocol.swift │ │ ├── StreamChatUtilsMocks.swift │ │ ├── TestRequest.swift │ │ ├── VirtualTimer.swift │ │ ├── WebSocketClient_Mock.swift │ │ ├── WebSocketEngineMock.swift │ │ ├── WebSocketPingControllerMock.swift │ │ └── mock.html │ ├── Shared │ │ ├── ChannelId.swift │ │ ├── ColorExtensions.swift │ │ ├── CustomAssertions │ │ │ ├── AssertAsync.swift │ │ │ ├── AssertJSONEqual.swift │ │ │ └── AssertResult.swift │ │ ├── JSONEncoder+Extensions.swift │ │ ├── MockFunc.swift │ │ ├── QueueAwareDelegate.swift │ │ ├── RandomDispatchQueue.swift │ │ ├── StreamChatModel.xcdatamodeld │ │ │ └── StreamChatModel.xcdatamodel │ │ │ │ └── contents │ │ ├── TemporaryData.swift │ │ ├── TestDataModel.xcdatamodeld │ │ │ └── TestDataModel.xcdatamodel │ │ │ │ └── contents │ │ ├── TestDataModel2.xcdatamodeld │ │ │ └── TestDataModel2.xcdatamodel │ │ │ │ └── contents │ │ ├── TestDispatchQueue.swift │ │ ├── TestError.swift │ │ ├── TestRunnerEnvironment.swift │ │ ├── UnwrapAsync.swift │ │ ├── WaitFor.swift │ │ ├── XCTAssertEqual+Difference.swift │ │ └── XCTestCase+MockJSON.swift │ └── TestTools │ │ ├── ChatClient_Mock.swift │ │ └── ViewFrameUtils.swift ├── StreamChatSwiftUITests-Bridging-Header.h └── Tests │ ├── ChatChannel │ ├── BottomReactionsView_Tests.swift │ ├── ChannelControllerFactory_Tests.swift │ ├── ChannelInfo │ │ ├── AddUsersViewModel_Tests.swift │ │ ├── AddUsersView_Tests.swift │ │ ├── ChannelInfoMockUtils.swift │ │ ├── ChatChannelInfoViewModel_Tests.swift │ │ ├── ChatChannelInfoView_Tests.swift │ │ ├── FileAttachmentsViewModel_Tests.swift │ │ ├── FileAttachmentsView_Tests.swift │ │ ├── MediaAttachmentsViewModel_Tests.swift │ │ ├── MediaAttachmentsView_Tests.swift │ │ ├── PinnedMessagesViewModel_Tests.swift │ │ ├── PinnedMessagesView_Tests.swift │ │ └── __Snapshots__ │ │ │ ├── AddUsersView_Tests │ │ │ └── test_addUsersView_snapshot.1.png │ │ │ ├── ChatChannelInfoView_Tests │ │ │ ├── test_chatChannelInfoView_addUsersShownSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_directChannelMoreMembersSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_directChannelMutedSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_directChannelOfflineSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_directChannelOnlineSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_groupCollapsedDeactivatedSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_groupCollapsedLargeDeactivatedSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_groupCollapsedSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_groupExpandedSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_navBarSnapshot.1.png │ │ │ ├── test_chatChannelInfoView_smallGroupDeactivatedSnapshot.1.png │ │ │ └── test_chatChannelInfoView_smallGroupSnapshot.1.png │ │ │ ├── FileAttachmentsView_Tests │ │ │ ├── test_fileAttachmentsPickerView_snapshot.1.png │ │ │ ├── test_fileAttachmentsView_emptySnapshot.default-light.png │ │ │ ├── test_fileAttachmentsView_emptySnapshot.extraExtraExtraLarge-light.png │ │ │ ├── test_fileAttachmentsView_emptySnapshot.rightToLeftLayout-default.png │ │ │ ├── test_fileAttachmentsView_emptySnapshot.small-dark.png │ │ │ ├── test_fileAttachmentsView_loadingSnapshot.1.png │ │ │ └── test_fileAttachmentsView_nonEmptySnapshot.1.png │ │ │ ├── MediaAttachmentsView_Tests │ │ │ ├── test_mediaAttachmentsView_emptySnapshot.default-light.png │ │ │ ├── test_mediaAttachmentsView_emptySnapshot.extraExtraExtraLarge-light.png │ │ │ ├── test_mediaAttachmentsView_emptySnapshot.rightToLeftLayout-default.png │ │ │ ├── test_mediaAttachmentsView_emptySnapshot.small-dark.png │ │ │ ├── test_mediaAttachmentsView_loading.1.png │ │ │ └── test_mediaAttachmentsView_notEmptySnapshot.1.png │ │ │ └── PinnedMessagesView_Tests │ │ │ ├── test_pinnedMessagesView_emptySnapshot.default-light.png │ │ │ ├── test_pinnedMessagesView_emptySnapshot.extraExtraExtraLarge-light.png │ │ │ ├── test_pinnedMessagesView_emptySnapshot.rightToLeftLayout-default.png │ │ │ ├── test_pinnedMessagesView_emptySnapshot.small-dark.png │ │ │ ├── test_pinnedMessagesView_imageSnapshot.1.png │ │ │ ├── test_pinnedMessagesView_notEmptySnapshot.1.png │ │ │ ├── test_pinnedMessagesView_pollSnapshot.1.png │ │ │ └── test_pinnedMessagesView_videoSnapshot.1.png │ ├── ChatChannelDataSource_Tests.swift │ ├── ChatChannelExtensions_Tests.swift │ ├── ChatChannelHeader_Tests.swift │ ├── ChatChannelTestHelpers.swift │ ├── ChatChannelViewDateOverlay_Tests.swift │ ├── ChatChannelViewModel_Tests.swift │ ├── ChatChannelView_Tests.swift │ ├── ChatMessageBubbles_Tests.swift │ ├── ChatMessageIDs_Tests.swift │ ├── ChatMessage_AdjustedText_Tests.swift │ ├── CreatePollViewModel_Tests.swift │ ├── CreatePollView_Tests.swift │ ├── FilePickerView_Tests.swift │ ├── GalleryView_Tests.swift │ ├── LazyImageExtensions_Tests.swift │ ├── MessageActionsViewModel_Tests.swift │ ├── MessageActions_Tests.swift │ ├── MessageCachingUtils_Tests.swift │ ├── MessageComposerViewModel_Tests.swift │ ├── MessageComposerView_Tests.swift │ ├── MessageContainerView_Tests.swift │ ├── MessageListDateUtils_Tests.swift │ ├── MessageListViewAvatars_Tests.swift │ ├── MessageListViewLastGroupHeader_Tests.swift │ ├── MessageListViewNewMessages_Tests.swift │ ├── MessageListView_Tests.swift │ ├── MessageReadIndicatorView_Tests.swift │ ├── MessageTypeResolver_Tests.swift │ ├── MessageViewMultiRowReactions_Tests.swift │ ├── MessageView_Tests.swift │ ├── PollAttachmentViewModel_Tests.swift │ ├── PollAttachmentView_Tests.swift │ ├── PollCommentsViewModel_Tests.swift │ ├── QuotedMessageView_Tests.swift │ ├── ReactionsOverlayView_Tests.swift │ ├── ReactionsUsersView_Tests.swift │ ├── Suggestions │ │ ├── CommandsHandler_Tests.swift │ │ ├── InstantCommandsHandler_Tests.swift │ │ ├── InstantCommandsView_Tests.swift │ │ ├── MuteCommandHandler_Tests.swift │ │ ├── TestCommandsConfig.swift │ │ ├── TypingSuggester_Tests.swift │ │ └── __Snapshots__ │ │ │ └── InstantCommandsView_Tests │ │ │ ├── test_instantCommandsContainerMaxSize_snapshot.1.png │ │ │ ├── test_instantCommandsContainerViewEmpty_snapshot.1.png │ │ │ ├── test_instantCommandsContainerView_snapshot.1.png │ │ │ └── test_instantCommandsView_snapshot.1.png │ ├── TypingIndicatorView_Tests.swift │ ├── WebView_Tests.swift │ └── __Snapshots__ │ │ ├── BottomReactionsView_Tests │ │ ├── test_bottomReactions_multipleRows_buttonNewRow.1.png │ │ ├── test_bottomReactions_multipleRows_currentUserReaction.1.png │ │ ├── test_bottomReactions_multipleRows_twoPerRow.1.png │ │ ├── test_bottomReactions_singleRow_currentUser.1.png │ │ ├── test_bottomReactions_singleRow_currentUserReaction.1.png │ │ └── test_bottomReactions_singleRow_otherUser.1.png │ │ ├── ChatChannelHeader_Tests │ │ ├── test_channelTitleView_snapshot.1.png │ │ ├── test_chatChannelHeaderModifier_channelAvatarUpdated.1.png │ │ ├── test_chatChannelHeaderModifier_snapshot.1.png │ │ └── test_chatChannelHeader_snapshot.1.png │ │ ├── ChatChannelViewDateOverlay_Tests │ │ └── test_chatChannelView_snapshot.1.png │ │ ├── ChatChannelView_Tests │ │ ├── test_chatChannelView_snapshot.1.png │ │ ├── test_chatChannelView_snapshotEmpty.1.png │ │ ├── test_chatChannelView_snapshotLoading.1.png │ │ └── test_defaultChannelHeader_snapshot.1.png │ │ ├── CreatePollView_Tests │ │ ├── test_createPollView_allOptionsDisabledSnapshot.default-dark.png │ │ ├── test_createPollView_allOptionsDisabledSnapshot.default-light.png │ │ ├── test_createPollView_allOptionsEnabledSnapshot.default-dark.png │ │ ├── test_createPollView_allOptionsEnabledSnapshot.default-light.png │ │ ├── test_createPollView_mixedOptionsSnapshot.default-dark.png │ │ ├── test_createPollView_mixedOptionsSnapshot.default-light.png │ │ ├── test_createPollView_snapshot.default-dark.png │ │ └── test_createPollView_snapshot.default-light.png │ │ ├── GalleryView_Tests │ │ ├── test_galleryHeader_snapshot.1.png │ │ ├── test_galleryView_snapshotLoading.1.png │ │ └── test_gridView_snapshotLoading.1.png │ │ ├── LazyImageExtensions_Tests │ │ ├── test_imageRequest_emptyURL.1.png │ │ ├── test_imageURL_empty.1.png │ │ └── test_imageURL_nonEmpty.1.png │ │ ├── MessageComposerView_Tests │ │ ├── test_composerInputView_command.default-dark-themed.png │ │ ├── test_composerInputView_command.default-dark.png │ │ ├── test_composerInputView_command.default-light-themed.png │ │ ├── test_composerInputView_command.default-light.png │ │ ├── test_composerInputView_composerInputTextView.1.png │ │ ├── test_composerInputView_inputTextView.1.png │ │ ├── test_composerInputView_slowMode.1.png │ │ ├── test_composerInputView_snapshot.1.png │ │ ├── test_composerQuotedMessage_translated.default-dark.png │ │ ├── test_composerQuotedMessage_translated.default-light.png │ │ ├── test_composerView_draftWithCommand.default-light.png │ │ ├── test_composerView_draftWithFileAttachment.default-light.png │ │ ├── test_composerView_draftWithImageAttachment.default-light.png │ │ ├── test_composerView_draftWithVideoAttachment.default-light.png │ │ ├── test_composerView_draftWithVoiceRecordingAttachment.default-light.png │ │ ├── test_composerView_editingMessageWithFileAttachment.default-light.png │ │ ├── test_composerView_editingMessageWithImageAttachment.default-light.png │ │ ├── test_composerView_editingMessageWithText.default-light.png │ │ ├── test_composerView_editingMessageWithVideoAttachment.default-light.png │ │ ├── test_composerView_editingMessageWithVoiceRecording.default-light.png │ │ ├── test_leadingComposerView_uploadFileCapability.1.png │ │ ├── test_leadingComposerView_withoutUploadFileCapability.1.png │ │ ├── test_messageComposerView_addedVoiceRecording.1.png │ │ ├── test_messageComposerView_recording.1.png │ │ ├── test_messageComposerView_recordingLocked.1.png │ │ ├── test_messageComposerView_recordingTip.1.png │ │ ├── test_messageComposerView_snapshot.1.png │ │ ├── test_photosPickerView_snapshot.1.png │ │ ├── test_quotedMessageHeaderView_snapshot.1.png │ │ ├── test_trailingComposerView_slowMode.1.png │ │ ├── test_trailingComposerView_snapshot.1.png │ │ ├── test_videoDurationIndicatorView_snapshot.1.png │ │ └── test_videoIndicatorView_snapshot.1.png │ │ ├── MessageContainerView_Tests │ │ ├── test_imageAttachments_failedWhenMessageTextIsEmpty_snapshot.1.png │ │ ├── test_imageAttachments_failed_snapshot.1.png │ │ ├── test_imageAttachments_snapshot.1.png │ │ ├── test_imageAttachments_snapshotFiveImages.1.png │ │ ├── test_messageContainerCurrentUserColor_snapshot.1.png │ │ ├── test_messageContainerEditedAIGenerated_snapshot.1.png │ │ ├── test_messageContainerEdited_snapshot.1.png │ │ ├── test_messageContainerOtherUserColor_snapshot.1.png │ │ ├── test_messageContainerViewPinned_snapshot.1.png │ │ ├── test_messageContainerViewSentOtherUser_snapshot.1.png │ │ ├── test_messageContainerViewSentThisUser_snapshot.1.png │ │ ├── test_messageContainerView_editingFailed_snapshot.1.png │ │ ├── test_messageContainerView_sendingFailed_snapshot.1.png │ │ ├── test_translatedText_myMessageIsNotTranslated_snapshot.default-light.png │ │ ├── test_translatedText_myMessageIsNotTranslated_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_translatedText_myMessageIsNotTranslated_snapshot.rightToLeftLayout-default.png │ │ ├── test_translatedText_myMessageIsNotTranslated_snapshot.small-dark.png │ │ ├── test_translatedText_participant_snapshot.1.png │ │ ├── test_translatedText_participant_snapshot.default-light.png │ │ ├── test_translatedText_participant_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_translatedText_participant_snapshot.rightToLeftLayout-default.png │ │ ├── test_translatedText_participant_snapshot.small-dark.png │ │ ├── test_translatedText_showOriginalTranslatedButtonDisabled_translatedTextShown_snapshot.1.png │ │ ├── test_translatedText_showOriginalTranslatedButtonEnabled_originalTextShown_snapshot.1.png │ │ ├── test_translatedText_showOriginalTranslatedButtonEnabled_translatedTextShown_snapshot.1.png │ │ ├── test_videoAttachment_snapshotNoText.1.png │ │ └── test_videoAttachment_snapshotText.1.png │ │ ├── MessageListViewAvatars_Tests │ │ ├── test_messageListView_defaultDMChannel.1.png │ │ ├── test_messageListView_defaultGroupsChannel.1.png │ │ ├── test_messageListView_dmChannelAvatarsOff.1.png │ │ └── test_messageListView_groupsChannelAvatarsOff.1.png │ │ ├── MessageListViewLastGroupHeader_Tests │ │ └── test_messageListView_headerOnTop.1.png │ │ ├── MessageListViewNewMessages_Tests │ │ ├── test_messageListViewNewMessages_moreMessages.1.png │ │ ├── test_messageListViewNewMessages_moreMessagesInBetween.1.png │ │ ├── test_messageListViewNewMessages_noMessages.1.png │ │ └── test_messageListViewNewMessages_singleMessage.1.png │ │ ├── MessageListView_Tests │ │ ├── test_messageListView_jumpToUnreadButton.1.png │ │ ├── test_messageListView_noReactions.1.png │ │ ├── test_messageListView_snapshotFallback.1.png │ │ ├── test_messageListView_typingIndicator.1.png │ │ ├── test_messageListView_withReactions.1.png │ │ ├── test_scrollToBottomButton_snapshotEmptyCount.1.png │ │ └── test_scrollToBottomButton_snapshotUnreadCount.1.png │ │ ├── MessageReadIndicatorView_Tests │ │ ├── test_messageReadIndicatorView_snapshotMessageEditingFailed.1.png │ │ ├── test_messageReadIndicatorView_snapshotMessageFailed.1.png │ │ ├── test_messageReadIndicatorView_snapshotMessageReadDirect.1.png │ │ ├── test_messageReadIndicatorView_snapshotMessageReadGroup.1.png │ │ ├── test_messageReadIndicatorView_snapshotMessageSent.1.png │ │ ├── test_messageReadIndicatorView_snapshotPendingSend.1.png │ │ ├── test_messageReadIndicatorView_snapshotSending.1.png │ │ ├── test_messageReadIndicatorView_snapshotSyncing.1.png │ │ └── test_messageReadIndicatorView_snapshotSyncing_whenShowReadCount.1.png │ │ ├── MessageViewMultiRowReactions_Tests │ │ └── test_messageViewMultiRowReactions_snapshot.1.png │ │ ├── MessageView_Tests │ │ ├── test_code_inlineOnMultipleLines.default-light.png │ │ ├── test_code_inlineOnMultipleLines.extraExtraExtraLarge-light.png │ │ ├── test_code_inlineOnMultipleLines.rightToLeftLayout-default.png │ │ ├── test_code_inlineOnMultipleLines.small-dark.png │ │ ├── test_deletedMessageViewContainer_snapshot.1.png │ │ ├── test_deletedMessageView_snapshot.1.png │ │ ├── test_linkAttachmentView_shouldNotRenderLinkPreviewWithOtherAttachments.1.png │ │ ├── test_linkAttachmentView_snapshot.1.png │ │ ├── test_linkDetection_markdownPlainAndMention.default-light.png │ │ ├── test_linkDetection_markdownPlainAndMention.extraExtraExtraLarge-light.png │ │ ├── test_linkDetection_markdownPlainAndMention.rightToLeftLayout-default.png │ │ ├── test_linkDetection_markdownPlainAndMention.small-dark.png │ │ ├── test_markdownAndLinkSupport_disabled.1.png │ │ ├── test_markdown_code.default-light.png │ │ ├── test_markdown_code.extraExtraExtraLarge-light.png │ │ ├── test_markdown_code.rightToLeftLayout-default.png │ │ ├── test_markdown_code.small-dark.png │ │ ├── test_markdown_disabledWithRegularText.1.png │ │ ├── test_markdown_headers.default-light.png │ │ ├── test_markdown_headers.extraExtraExtraLarge-light.png │ │ ├── test_markdown_headers.rightToLeftLayout-default.png │ │ ├── test_markdown_headers.small-dark.png │ │ ├── test_markdown_linkSupportDisabled.1.png │ │ ├── test_markdown_links.default-light.png │ │ ├── test_markdown_links.extraExtraExtraLarge-light.png │ │ ├── test_markdown_links.rightToLeftLayout-default.png │ │ ├── test_markdown_links.small-dark.png │ │ ├── test_markdown_links_customColor.default-light.png │ │ ├── test_markdown_links_customColor.extraExtraExtraLarge-light.png │ │ ├── test_markdown_links_customColor.rightToLeftLayout-default.png │ │ ├── test_markdown_links_customColor.small-dark.png │ │ ├── test_markdown_links_inLists.default-light.png │ │ ├── test_markdown_links_inLists.extraExtraExtraLarge-light.png │ │ ├── test_markdown_links_inLists.rightToLeftLayout-default.png │ │ ├── test_markdown_links_inLists.small-dark.png │ │ ├── test_markdown_links_markdownDisabled.default-light.png │ │ ├── test_markdown_links_markdownDisabled.extraExtraExtraLarge-light.png │ │ ├── test_markdown_links_markdownDisabled.rightToLeftLayout-default.png │ │ ├── test_markdown_links_markdownDisabled.small-dark.png │ │ ├── test_markdown_mixedLists_nested.default-light.png │ │ ├── test_markdown_mixedLists_nested.extraExtraExtraLarge-light.png │ │ ├── test_markdown_mixedLists_nested.rightToLeftLayout-default.png │ │ ├── test_markdown_mixedLists_nested.small-dark.png │ │ ├── test_markdown_orderedList_nested_wrappedTextItem.default-light.png │ │ ├── test_markdown_orderedList_nested_wrappedTextItem.extraExtraExtraLarge-light.png │ │ ├── test_markdown_orderedList_nested_wrappedTextItem.rightToLeftLayout-default.png │ │ ├── test_markdown_orderedList_nested_wrappedTextItem.small-dark.png │ │ ├── test_markdown_orderedLists.default-light.png │ │ ├── test_markdown_orderedLists.extraExtraExtraLarge-light.png │ │ ├── test_markdown_orderedLists.rightToLeftLayout-default.png │ │ ├── test_markdown_orderedLists.small-dark.png │ │ ├── test_markdown_orderedLists_nested.default-light.png │ │ ├── test_markdown_orderedLists_nested.extraExtraExtraLarge-light.png │ │ ├── test_markdown_orderedLists_nested.rightToLeftLayout-default.png │ │ ├── test_markdown_orderedLists_nested.small-dark.png │ │ ├── test_markdown_quote.default-light.png │ │ ├── test_markdown_quote.extraExtraExtraLarge-light.png │ │ ├── test_markdown_quote.rightToLeftLayout-default.png │ │ ├── test_markdown_quote.small-dark.png │ │ ├── test_markdown_quote_multipleLines.default-light.png │ │ ├── test_markdown_quote_multipleLines.extraExtraExtraLarge-light.png │ │ ├── test_markdown_quote_multipleLines.rightToLeftLayout-default.png │ │ ├── test_markdown_quote_multipleLines.small-dark.png │ │ ├── test_markdown_quote_separate.default-light.png │ │ ├── test_markdown_quote_separate.extraExtraExtraLarge-light.png │ │ ├── test_markdown_quote_separate.rightToLeftLayout-default.png │ │ ├── test_markdown_quote_separate.small-dark.png │ │ ├── test_markdown_text.default-light.png │ │ ├── test_markdown_text.extraExtraExtraLarge-light.png │ │ ├── test_markdown_text.rightToLeftLayout-default.png │ │ ├── test_markdown_text.small-dark.png │ │ ├── test_markdown_thematicBreak.default-light.png │ │ ├── test_markdown_thematicBreak.extraExtraExtraLarge-light.png │ │ ├── test_markdown_thematicBreak.rightToLeftLayout-default.png │ │ ├── test_markdown_thematicBreak.small-dark.png │ │ ├── test_markdown_unorderedLists.default-light.png │ │ ├── test_markdown_unorderedLists.extraExtraExtraLarge-light.png │ │ ├── test_markdown_unorderedLists.rightToLeftLayout-default.png │ │ ├── test_markdown_unorderedLists.small-dark.png │ │ ├── test_markdown_unorderedLists_nested.default-light.png │ │ ├── test_markdown_unorderedLists_nested.extraExtraExtraLarge-light.png │ │ ├── test_markdown_unorderedLists_nested.rightToLeftLayout-default.png │ │ ├── test_markdown_unorderedLists_nested.small-dark.png │ │ ├── test_messageRepliesViewShownInChannel_snapshot.1.png │ │ ├── test_messageRepliesView_snapshot.1.png │ │ ├── test_messageViewFileText_snapshot.1.png │ │ ├── test_messageViewFile_snapshot.1.png │ │ ├── test_messageViewGiphy_snapshot.1.png │ │ ├── test_messageViewImage_snapshot.1.png │ │ ├── test_messageViewImage_snapshot2Images.1.png │ │ ├── test_messageViewImage_snapshot3Images.1.png │ │ ├── test_messageViewImage_snapshot3ImagesAndVideo.1.png │ │ ├── test_messageViewImage_snapshotQuoted.1.png │ │ ├── test_messageViewJumboEmoji_snapshot.1.png │ │ ├── test_messageViewTextMentionMultiple_snapshot.1.png │ │ ├── test_messageViewTextMention_snapshot.1.png │ │ ├── test_messageViewText_snapshot.1.png │ │ ├── test_messageViewVideo_snapshot.1.png │ │ ├── test_messageViewVoiceRecordingFromMeTheming_snapshot.default-light.png │ │ ├── test_messageViewVoiceRecordingFromMe_snapshot.default-light.png │ │ ├── test_messageViewVoiceRecordingFromMe_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_messageViewVoiceRecordingFromMe_snapshot.rightToLeftLayout-default.png │ │ ├── test_messageViewVoiceRecordingFromMe_snapshot.small-dark.png │ │ ├── test_messageViewVoiceRecordingFromParticipant_snapshot.default-light.png │ │ ├── test_messageViewVoiceRecordingFromParticipant_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_messageViewVoiceRecordingFromParticipant_snapshot.rightToLeftLayout-default.png │ │ ├── test_messageViewVoiceRecordingFromParticipant_snapshot.small-dark.png │ │ ├── test_messageViewVoiceRecordingWithTextFromMeMultiple_snapshot.default-light.png │ │ ├── test_messageViewVoiceRecordingWithTextFromMeMultiple_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_messageViewVoiceRecordingWithTextFromMeMultiple_snapshot.rightToLeftLayout-default.png │ │ ├── test_messageViewVoiceRecordingWithTextFromMeMultiple_snapshot.small-dark.png │ │ ├── test_messageViewVoiceRecordingWithTextFromMe_snapshot.default-light.png │ │ ├── test_messageViewVoiceRecordingWithTextFromMe_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_messageViewVoiceRecordingWithTextFromMe_snapshot.rightToLeftLayout-default.png │ │ ├── test_messageViewVoiceRecordingWithTextFromMe_snapshot.small-dark.png │ │ ├── test_messageViewVoiceRecordingWithTextFromParticipantMultiple_snapshot.default-light.png │ │ ├── test_messageViewVoiceRecordingWithTextFromParticipantMultiple_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_messageViewVoiceRecordingWithTextFromParticipantMultiple_snapshot.rightToLeftLayout-default.png │ │ ├── test_messageViewVoiceRecordingWithTextFromParticipantMultiple_snapshot.small-dark.png │ │ ├── test_messageViewVoiceRecordingWithTextFromParticipant_snapshot.default-light.png │ │ ├── test_messageViewVoiceRecordingWithTextFromParticipant_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_messageViewVoiceRecordingWithTextFromParticipant_snapshot.rightToLeftLayout-default.png │ │ ├── test_messageViewVoiceRecordingWithTextFromParticipant_snapshot.small-dark.png │ │ ├── test_text_withMultiline.default-light.png │ │ ├── test_text_withMultiline.extraExtraExtraLarge-light.png │ │ ├── test_text_withMultiline.rightToLeftLayout-default.png │ │ ├── test_text_withMultiline.small-dark.png │ │ └── test_topLeftView_snapshot.1.png │ │ ├── PollAttachmentView_Tests │ │ ├── test_pollAttachmentView_allComments.default-dark.png │ │ ├── test_pollAttachmentView_allComments.default-light.png │ │ ├── test_pollAttachmentView_allOptions.default-dark.png │ │ ├── test_pollAttachmentView_allOptions.default-light.png │ │ ├── test_pollAttachmentView_allVotes.default-dark.png │ │ ├── test_pollAttachmentView_allVotes.default-light.png │ │ ├── test_pollAttachmentView_closedPoll.default-dark.png │ │ ├── test_pollAttachmentView_closedPoll.default-light.png │ │ ├── test_pollAttachmentView_resultsSnapshot.default-dark.png │ │ ├── test_pollAttachmentView_resultsSnapshot.default-light.png │ │ ├── test_pollAttachmentView_snapshotCommentsAndSuggestions.default-dark.png │ │ ├── test_pollAttachmentView_snapshotCommentsAndSuggestions.default-light.png │ │ ├── test_pollAttachmentView_snapshotUniqueVotes.default-dark.png │ │ └── test_pollAttachmentView_snapshotUniqueVotes.default-light.png │ │ ├── QuotedMessageView_Tests │ │ ├── test_quotedMessageViewContainer_snapshot.1.png │ │ ├── test_quotedMessageView_deletedSnapshot.default-dark.png │ │ ├── test_quotedMessageView_deletedSnapshot.default-light.png │ │ ├── test_quotedMessageView_snapshot.1.png │ │ └── test_quotedMessageView_voiceAttachmentSnapshot.1.png │ │ ├── ReactionsOverlayView_Tests │ │ ├── test_reactionAnimatableView_snapshot.1.png │ │ ├── test_reactionsAnimatableView_snapshot.1.png │ │ ├── test_reactionsOverlayContainer_snapshot.1.png │ │ ├── test_reactionsOverlayView_noReactions.1.png │ │ ├── test_reactionsOverlayView_snapshot.1.png │ │ ├── test_reactionsOverlayView_translated.1.png │ │ ├── test_reactionsOverlayView_usersReactions.1.png │ │ └── test_reactionsOverlay_veryLongMessage.1.png │ │ ├── ReactionsUsersView_Tests │ │ ├── test_reactionsUsersView_snapshotOneRow.1.png │ │ └── test_reactionsUsersView_snapshotTwoRows.1.png │ │ └── TypingIndicatorView_Tests │ │ ├── test_typingIndicatorView_snapshot.default-dark.png │ │ └── test_typingIndicatorView_snapshot.default-light.png │ ├── ChatChannelList │ ├── ChannelHeaderLoader_Tests.swift │ ├── ChatChannelListItemView_Tests.swift │ ├── ChatChannelListTestHelpers.swift │ ├── ChatChannelListViewModel_Tests.swift │ ├── ChatChannelListView_Tests.swift │ ├── LoadingView_Tests.swift │ ├── MoreChannelActionsFullScreenWrappingView_Tests.swift │ ├── MoreChannelActionsViewModel_Tests.swift │ ├── MoreChannelActionsView_Tests.swift │ ├── NoChannelsView_Tests.swift │ ├── SearchResultsView_Tests.swift │ └── __Snapshots__ │ │ ├── ChatChannelListItemView_Tests │ │ ├── test_channelListItem_audioMessage.1.png │ │ ├── test_channelListItem_draftMessage.1.png │ │ ├── test_channelListItem_draftMessageWithAttachment.1.png │ │ ├── test_channelListItem_fileMessage.1.png │ │ ├── test_channelListItem_giphyMessageLatestButPreviewIsAnotherMessage.1.png │ │ ├── test_channelListItem_imageMessage.1.png │ │ ├── test_channelListItem_pollMessage_someoneCreated.1.png │ │ ├── test_channelListItem_pollMessage_someoneVoted.1.png │ │ ├── test_channelListItem_pollMessage_youCreated.1.png │ │ ├── test_channelListItem_pollMessage_youVoted.1.png │ │ ├── test_channelListItem_translatedText_me.1.png │ │ ├── test_channelListItem_translatedText_participant.1.png │ │ └── test_channelListItem_videoMessage.1.png │ │ ├── ChatChannelListView_Tests │ │ ├── test_channelListView_channelAvatarUpdated.1.png │ │ ├── test_chatChannelListViewSansNavigation_snapshot.1.png │ │ ├── test_chatChannelListView_snapshot.1.png │ │ ├── test_chatChannelScreen_snapshot.1.png │ │ └── test_trailingSwipeActionsView_snapshot.1.png │ │ ├── LoadingView_Tests │ │ ├── test_loadingView_snapshot.1.png │ │ └── test_redactedLoadingView_snapshot.1.png │ │ ├── MoreChannelActionsFullScreenWrappingView_Tests │ │ └── test_moreChannelActionsFullScreenWrappingView_snapshot.1.png │ │ ├── MoreChannelActionsView_Tests │ │ └── test_moreChannelActionsView_snapshot.1.png │ │ ├── NoChannelsView_Tests │ │ ├── test_noChannelsView_snapshot.default-light.png │ │ ├── test_noChannelsView_snapshot.extraExtraExtraLarge-light.png │ │ ├── test_noChannelsView_snapshot.rightToLeftLayout-default.png │ │ └── test_noChannelsView_snapshot.small-dark.png │ │ └── SearchResultsView_Tests │ │ ├── test_searchResultsView_channelAvatarUpdated.1.png │ │ ├── test_searchResultsView_snapshotLoading.1.png │ │ ├── test_searchResultsView_snapshotNoResults.1.png │ │ ├── test_searchResultsView_snapshotResults.1.png │ │ └── test_searchResultsView_snapshotResults_whenChannelSearch.1.png │ ├── ChatThreadList │ ├── ChatThreadListItemView_Tests.swift │ ├── ChatThreadListViewModel_Tests.swift │ ├── ChatThreadListView_Tests.swift │ └── __Snapshots__ │ │ ├── ChatThreadListItemView_Tests │ │ ├── test_threadListItem_default.1.png │ │ ├── test_threadListItem_whenAttachmentIsPoll.1.png │ │ ├── test_threadListItem_whenAttachments.1.png │ │ ├── test_threadListItem_whenDraftMessage.1.png │ │ ├── test_threadListItem_whenDraftMessageHasAttachment.1.png │ │ ├── test_threadListItem_withLastReplyDeleted.1.png │ │ ├── test_threadListItem_withParentMessageDeleted.1.png │ │ ├── test_threadListItem_withTitle.1.png │ │ └── test_threadListItem_withUnreads.1.png │ │ └── ChatThreadListView_Tests │ │ ├── test_chatThreadListView_empty.1.png │ │ ├── test_chatThreadListView_errorLoadingMoreThreads.1.png │ │ ├── test_chatThreadListView_errorLoadingThreads.1.png │ │ ├── test_chatThreadListView_loading.1.png │ │ ├── test_chatThreadListView_loadingMoreThreads.1.png │ │ ├── test_chatThreadListView_reloadingThreads.1.png │ │ ├── test_chatThreadListView_whenNewThreadsAvailable.1.png │ │ └── test_chatThreadListView_withThreads.1.png │ ├── CommonViews │ ├── AlertBannerViewModifier_Tests.swift │ └── __Snapshots__ │ │ └── AlertBannerViewModifier_Tests │ │ └── test_alertBanner_snapshot.1.png │ ├── StreamChatSwiftUI.xctestplan │ ├── StreamChatTestCase.swift │ └── Utils │ ├── AudioRecordingNameFormatter_Tests.swift │ ├── ChatChannelNamer_Tests.swift │ ├── ChatClientExtensions_Tests.swift │ ├── ChatMessageExtensions_Tests.swift │ ├── ChatUserNamer_Tests.swift │ ├── DateUtils_Tests.swift │ ├── ImageCDN_Tests.swift │ ├── MessageRelativeDateFormatter_Tests.swift │ ├── PaddingsConfig_Tests.swift │ ├── ReactionsIconProvider_Tests.swift │ ├── SortReactions_Tests.swift │ ├── StreamChat_Utils_Tests.swift │ ├── StringExtensions_Tests.swift │ ├── URLUtils_Tests.swift │ ├── VideoDurationFormatter_Tests.swift │ └── ViewFactory_Tests.swift ├── StreamChatSwiftUITestsApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── 120-1.png │ │ ├── 120.png │ │ ├── 152.png │ │ ├── 167.png │ │ ├── 180.png │ │ ├── 20.png │ │ ├── 29.png │ │ ├── 40-1.png │ │ ├── 40-2.png │ │ ├── 40.png │ │ ├── 58-1.png │ │ ├── 58.png │ │ ├── 60.png │ │ ├── 76.png │ │ ├── 80-1.png │ │ ├── 80.png │ │ ├── 87.png │ │ ├── Contents.json │ │ └── appstore.png │ └── Contents.json ├── CustomChannelHeader.swift ├── Info.plist ├── InternetConnectionMonitor_Mock.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── StartPage.swift ├── StreamChatSwiftUITestsApp.entitlements ├── StreamChatSwiftUITestsAppApp.swift ├── StreamChatWrapper.swift └── UserCredentials.swift ├── StreamChatSwiftUITestsAppTests ├── Extensions │ └── Bundle+Target.swift ├── Pages │ ├── ChannelListPage.swift │ ├── MessageListPage.swift │ ├── Settings.swift │ ├── SpringBoard.swift │ ├── StartPage.swift │ └── ThreadPage.swift ├── Robots │ ├── UserRobot+Asserts.swift │ └── UserRobot.swift ├── StreamChatSwiftUITests.swift ├── StreamChatSwiftUITestsApp.xctestplan └── Tests │ ├── Attachments_Tests.swift │ ├── Base TestCase │ └── StreamTestCase.swift │ ├── ChannelList_Tests.swift │ ├── Ephemeral_Messages_Tests.swift │ ├── Message Delivery Status │ ├── MessageDeliveryStatus+ChannelList_Tests.swift │ └── MessageDeliveryStatus_Tests.swift │ ├── MessageList_Tests.swift │ ├── PushNotification_Tests.swift │ ├── QuotedReply_Tests.swift │ ├── Reactions_Tests.swift │ ├── SlowMode_Tests.swift │ └── StreamTestCase+Tags.swift ├── fastlane ├── .env ├── .rubocop.yml ├── Allurefile ├── Fastfile ├── Matchfile ├── Pluginfile ├── Scanfile ├── Sonarfile ├── sdk_size_export_options.plist ├── sinatra.rb └── testflight_export_options.plist ├── hooks ├── git-format-staged ├── pre-commit.sh └── regenerage-spm-package-if-needed.sh └── sonar-project.properties /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @GetStream/ios-developers 2 | -------------------------------------------------------------------------------- /.github/actions/ruby-cache/action.yml: -------------------------------------------------------------------------------- 1 | name: 'Ruby Cache' 2 | description: 'Cache Ruby dependencies' 3 | runs: 4 | using: "composite" 5 | steps: 6 | - uses: ruby/setup-ruby@v1 7 | with: 8 | ruby-version: 3.1 9 | bundler-cache: true 10 | -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- 1 | version: 1 2 | builder: 3 | configs: 4 | - platform: ios 5 | documentation_targets: [StreamChatSwiftUI] 6 | scheme: StreamChatSwiftUI 7 | swift_version: 5.9 8 | -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/appstore-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/AppIcon.appiconset/appstore-2.png -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/STREAMMARK.imageset/STREAMMARK.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/STREAMMARK.imageset/STREAMMARK.pdf -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/stream_wave.imageset/stream_wave.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/stream_wave.imageset/stream_wave.pdf -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/wave.imageset/wave.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/wave.imageset/wave.pdf -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/wave_bottom.imageset/wave_bottom.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/wave_bottom.imageset/wave_bottom.pdf -------------------------------------------------------------------------------- /DemoAppSwiftUI/Assets.xcassets/wave_top.imageset/wave_top.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/DemoAppSwiftUI/Assets.xcassets/wave_top.imageset/wave_top.pdf -------------------------------------------------------------------------------- /DemoAppSwiftUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Githubfile: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | export ALLURECTL_VERSION='2.16.0' 4 | export XCRESULTS_VERSION='1.19.1' 5 | export YEETD_VERSION='1.0' 6 | export MINT_VERSION='0.17.5' 7 | export SONAR_VERSION='6.2.1.4610' 8 | export IPSW_VERSION='3.1.592' 9 | -------------------------------------------------------------------------------- /Mintfile: -------------------------------------------------------------------------------- 1 | nicklockwood/SwiftFormat@0.47.12 2 | SwiftGen/SwiftGen@6.5.1 3 | -------------------------------------------------------------------------------- /ReadmeAssets/ChannelListPreview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/ChannelListPreview.gif -------------------------------------------------------------------------------- /ReadmeAssets/Channel_Creation_Bezel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/Channel_Creation_Bezel.png -------------------------------------------------------------------------------- /ReadmeAssets/Channel_List_Bezel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/Channel_List_Bezel.png -------------------------------------------------------------------------------- /ReadmeAssets/Commands_Bezel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/Commands_Bezel.png -------------------------------------------------------------------------------- /ReadmeAssets/Low_Level_SDK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/Low_Level_SDK.png -------------------------------------------------------------------------------- /ReadmeAssets/Mentions_Bezel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/Mentions_Bezel.png -------------------------------------------------------------------------------- /ReadmeAssets/MessageListPreview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/MessageListPreview.gif -------------------------------------------------------------------------------- /ReadmeAssets/Message_Composer_Bezels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/Message_Composer_Bezels.png -------------------------------------------------------------------------------- /ReadmeAssets/Message_List_Bezel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/Message_List_Bezel.png -------------------------------------------------------------------------------- /ReadmeAssets/iOS_Chat_Messaging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/ReadmeAssets/iOS_Chat_Messaging.png -------------------------------------------------------------------------------- /Scripts/createPropFiles.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pushd docusaurus/docs/iOS/common-content/reference-docs 4 | 5 | find . -name "*.md" ! -name '*-properties.md' -type f -exec sh -c 'N="${0%.*}-properties.md"; awk "/## Properties/{p=1}p" {} | awk "NR>2 {print last} {last=\$0}" > $N' {} \; 6 | 7 | popd 8 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/.swiftgen.yml: -------------------------------------------------------------------------------- 1 | strings: 2 | inputs: 3 | - Resources/en.lproj/Localizable.strings 4 | - Resources/en.lproj/Localizable.stringsdict 5 | outputs: 6 | - templatePath: Generated/L10n_template.stencil 7 | output: Generated/L10n.swift 8 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/7z.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_7z.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/aac.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "aac.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/csv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_csv.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/doc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_doc.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/docx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_docx.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/generic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_generic.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/html.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_html.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/md.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_md.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/mp3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_mp3.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/odt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_odt.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/pdf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_pdf.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/ppt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_ppt.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/pptx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_pptx.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/rar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_rar.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/rtf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_rtf.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/tar.gz.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_tar.gz.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/txt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_txt.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/xls.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_xls.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/xlsx.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_xlsx.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Attachments/Previews/zip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "filetype_zip.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Message Actions/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Message Actions/icn_copy.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icn_copy.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Message Actions/icn_delete.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icn_delete.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Message Actions/icn_edit.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icn_edit.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Message Actions/icn_mute_user.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icn_mute_user.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Message Actions/icn_resend.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icn_resend.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Message Composer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Reactions/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Reactions/reaction_lol_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon_LOL_reaction.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Reactions/reaction_love_small.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon_heart-1.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Reactions/reaction_thumbsup_small.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon_heart.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Reactions/reaction_wut_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon_wut_reaction.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Suggestions Icons/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Suggestions Icons/command_ban.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "command_ban.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Suggestions Icons/command_flag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "command_flag.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/Suggestions Icons/command_mute.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "command_mute.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "preserves-vector-representation" : true 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/arrow_send.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "sendMessageArrow.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/arrow_shrink_input.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "shrinkInputArrow.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/bolt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "bolt.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/camera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "camera.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/checkmark_confirm.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "editMessageCheckmark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/checkmark_confirm_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "uploaded.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/checkmark_double.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "doubleCheckmark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/checkmark_grey.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "checkmark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/checkmark_white.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "threadCheckmark.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/clip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "clip.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/close.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon_close.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/close_circle_filled.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "discardAttachment.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/download.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "download.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/error_indicator.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "error_indicator.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/eye.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "eye.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/folder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Icon_folder.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/icn_more.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Union.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/icn_pin.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pin.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/icn_search.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icn_search.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/loading_indicator.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "loading_indicator.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/message_receipt_sending.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Union.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pattern1.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern1.imageset/pattern1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern1.imageset/pattern1.pdf -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pattern2.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern2.imageset/pattern2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern2.imageset/pattern2.pdf -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pattern3.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern3.imageset/pattern3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern3.imageset/pattern3.pdf -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pattern4.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern4.imageset/pattern4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern4.imageset/pattern4.pdf -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pattern5.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern5.imageset/pattern5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pattern5.imageset/pattern5.pdf -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pause.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pause.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pause.imageset/pause.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/Sources/StreamChatSwiftUI/Resources/Assets.xcassets/pause.imageset/pause.pdf -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/play.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "play.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/play.imageset/play.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/Sources/StreamChatSwiftUI/Resources/Assets.xcassets/play.imageset/play.pdf -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/play_big.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "play.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "original" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/restart.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "restart.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/share.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "icon_share.pdf", 5 | "idiom" : "universal" 6 | } 7 | ], 8 | "info" : { 9 | "author" : "xcode", 10 | "version" : 1 11 | }, 12 | "properties" : { 13 | "template-rendering-intent" : "template" 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/Resources/Assets.xcassets/sliderThumb.imageset/sliderThumb.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/Sources/StreamChatSwiftUI/Resources/Assets.xcassets/sliderThumb.imageset/sliderThumb.pdf -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/SDKIdentifier.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright © 2025 Stream.io Inc. All rights reserved. 3 | // 4 | 5 | import Foundation 6 | 7 | /// Used to dynamically find which frameworks are linked to an app using NSClassFromString 8 | class SDKIdentifier: NSObject {} 9 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/StreamNuke/NukeUI/Gifu/Extensions/Array.swift: -------------------------------------------------------------------------------- 1 | extension Array { 2 | subscript(safe index: Int) -> Element? { 3 | return indices ~= index ? self[index] : nil 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /Sources/StreamChatSwiftUI/StreamNuke/NukeUI/Gifu/Extensions/UIImageView.swift: -------------------------------------------------------------------------------- 1 | #if os(iOS) || os(tvOS) 2 | /// Makes `UIImageView` conform to `ImageContainer` 3 | import UIKit 4 | extension UIImageView: _ImageContainer {} 5 | #endif 6 | -------------------------------------------------------------------------------- /StreamChatSwiftUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /StreamChatSwiftUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Infrastructure/Mocks/mock.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

My First Heading

6 | 7 |

My first paragraph.

8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Infrastructure/Shared/TestError.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright © 2025 Stream.io Inc. All rights reserved. 3 | // 4 | 5 | import Foundation 6 | 7 | /// Uniquely identifiable error that can be used in tests. 8 | struct TestError: Error, Equatable { 9 | let id = UUID() 10 | } 11 | -------------------------------------------------------------------------------- /StreamChatSwiftUITests/StreamChatSwiftUITests-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/AddUsersView_Tests/test_addUsersView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/AddUsersView_Tests/test_addUsersView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_addUsersShownSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_addUsersShownSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_directChannelMutedSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_directChannelMutedSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_directChannelOfflineSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_directChannelOfflineSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_directChannelOnlineSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_directChannelOnlineSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_groupCollapsedSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_groupCollapsedSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_groupExpandedSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_groupExpandedSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_navBarSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_navBarSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_smallGroupDeactivatedSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_smallGroupDeactivatedSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_smallGroupSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/ChatChannelInfoView_Tests/test_chatChannelInfoView_smallGroupSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsPickerView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsPickerView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsView_emptySnapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsView_emptySnapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsView_emptySnapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsView_emptySnapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsView_loadingSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsView_loadingSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsView_nonEmptySnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/FileAttachmentsView_Tests/test_fileAttachmentsView_nonEmptySnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/MediaAttachmentsView_Tests/test_mediaAttachmentsView_emptySnapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/MediaAttachmentsView_Tests/test_mediaAttachmentsView_emptySnapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/MediaAttachmentsView_Tests/test_mediaAttachmentsView_emptySnapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/MediaAttachmentsView_Tests/test_mediaAttachmentsView_emptySnapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/MediaAttachmentsView_Tests/test_mediaAttachmentsView_loading.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/MediaAttachmentsView_Tests/test_mediaAttachmentsView_loading.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/MediaAttachmentsView_Tests/test_mediaAttachmentsView_notEmptySnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/MediaAttachmentsView_Tests/test_mediaAttachmentsView_notEmptySnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_emptySnapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_emptySnapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_emptySnapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_emptySnapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_imageSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_imageSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_notEmptySnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_notEmptySnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_pollSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_pollSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_videoSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/ChannelInfo/__Snapshots__/PinnedMessagesView_Tests/test_pinnedMessagesView_videoSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/Suggestions/__Snapshots__/InstantCommandsView_Tests/test_instantCommandsContainerMaxSize_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/Suggestions/__Snapshots__/InstantCommandsView_Tests/test_instantCommandsContainerMaxSize_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/Suggestions/__Snapshots__/InstantCommandsView_Tests/test_instantCommandsContainerViewEmpty_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/Suggestions/__Snapshots__/InstantCommandsView_Tests/test_instantCommandsContainerViewEmpty_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/Suggestions/__Snapshots__/InstantCommandsView_Tests/test_instantCommandsContainerView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/Suggestions/__Snapshots__/InstantCommandsView_Tests/test_instantCommandsContainerView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/Suggestions/__Snapshots__/InstantCommandsView_Tests/test_instantCommandsView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/Suggestions/__Snapshots__/InstantCommandsView_Tests/test_instantCommandsView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_multipleRows_buttonNewRow.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_multipleRows_buttonNewRow.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_multipleRows_currentUserReaction.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_multipleRows_currentUserReaction.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_multipleRows_twoPerRow.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_multipleRows_twoPerRow.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_singleRow_currentUser.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_singleRow_currentUser.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_singleRow_currentUserReaction.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_singleRow_currentUserReaction.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_singleRow_otherUser.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/BottomReactionsView_Tests/test_bottomReactions_singleRow_otherUser.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelHeader_Tests/test_channelTitleView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelHeader_Tests/test_channelTitleView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelHeader_Tests/test_chatChannelHeaderModifier_channelAvatarUpdated.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelHeader_Tests/test_chatChannelHeaderModifier_channelAvatarUpdated.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelHeader_Tests/test_chatChannelHeaderModifier_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelHeader_Tests/test_chatChannelHeaderModifier_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelHeader_Tests/test_chatChannelHeader_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelHeader_Tests/test_chatChannelHeader_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelViewDateOverlay_Tests/test_chatChannelView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelViewDateOverlay_Tests/test_chatChannelView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelView_Tests/test_chatChannelView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelView_Tests/test_chatChannelView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelView_Tests/test_chatChannelView_snapshotEmpty.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelView_Tests/test_chatChannelView_snapshotEmpty.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelView_Tests/test_chatChannelView_snapshotLoading.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelView_Tests/test_chatChannelView_snapshotLoading.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelView_Tests/test_defaultChannelHeader_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ChatChannelView_Tests/test_defaultChannelHeader_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_allOptionsDisabledSnapshot.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_allOptionsDisabledSnapshot.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_allOptionsDisabledSnapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_allOptionsDisabledSnapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_allOptionsEnabledSnapshot.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_allOptionsEnabledSnapshot.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_allOptionsEnabledSnapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_allOptionsEnabledSnapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_mixedOptionsSnapshot.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_mixedOptionsSnapshot.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_mixedOptionsSnapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_mixedOptionsSnapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_snapshot.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_snapshot.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/CreatePollView_Tests/test_createPollView_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/GalleryView_Tests/test_galleryHeader_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/GalleryView_Tests/test_galleryHeader_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/GalleryView_Tests/test_galleryView_snapshotLoading.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/GalleryView_Tests/test_galleryView_snapshotLoading.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/GalleryView_Tests/test_gridView_snapshotLoading.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/GalleryView_Tests/test_gridView_snapshotLoading.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/LazyImageExtensions_Tests/test_imageRequest_emptyURL.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/LazyImageExtensions_Tests/test_imageRequest_emptyURL.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/LazyImageExtensions_Tests/test_imageURL_empty.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/LazyImageExtensions_Tests/test_imageURL_empty.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/LazyImageExtensions_Tests/test_imageURL_nonEmpty.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/LazyImageExtensions_Tests/test_imageURL_nonEmpty.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_command.default-dark-themed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_command.default-dark-themed.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_command.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_command.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_command.default-light-themed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_command.default-light-themed.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_command.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_command.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_composerInputTextView.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_composerInputTextView.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_inputTextView.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_inputTextView.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_slowMode.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_slowMode.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerInputView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerQuotedMessage_translated.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerQuotedMessage_translated.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerQuotedMessage_translated.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerQuotedMessage_translated.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithCommand.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithCommand.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithFileAttachment.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithFileAttachment.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithImageAttachment.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithImageAttachment.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithVideoAttachment.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithVideoAttachment.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithVoiceRecordingAttachment.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_draftWithVoiceRecordingAttachment.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithFileAttachment.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithFileAttachment.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithImageAttachment.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithImageAttachment.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithText.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithText.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithVideoAttachment.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithVideoAttachment.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithVoiceRecording.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_composerView_editingMessageWithVoiceRecording.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_leadingComposerView_uploadFileCapability.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_leadingComposerView_uploadFileCapability.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_leadingComposerView_withoutUploadFileCapability.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_leadingComposerView_withoutUploadFileCapability.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_addedVoiceRecording.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_addedVoiceRecording.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_recording.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_recording.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_recordingLocked.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_recordingLocked.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_recordingTip.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_recordingTip.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_messageComposerView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_photosPickerView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_photosPickerView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_quotedMessageHeaderView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_quotedMessageHeaderView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_trailingComposerView_slowMode.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_trailingComposerView_slowMode.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_trailingComposerView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_trailingComposerView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_videoDurationIndicatorView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_videoDurationIndicatorView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_videoIndicatorView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageComposerView_Tests/test_videoIndicatorView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_imageAttachments_failedWhenMessageTextIsEmpty_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_imageAttachments_failedWhenMessageTextIsEmpty_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_imageAttachments_failed_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_imageAttachments_failed_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_imageAttachments_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_imageAttachments_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_imageAttachments_snapshotFiveImages.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_imageAttachments_snapshotFiveImages.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerCurrentUserColor_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerCurrentUserColor_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerEditedAIGenerated_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerEditedAIGenerated_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerEdited_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerEdited_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerOtherUserColor_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerOtherUserColor_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerViewPinned_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerViewPinned_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerViewSentOtherUser_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerViewSentOtherUser_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerViewSentThisUser_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerViewSentThisUser_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerView_editingFailed_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerView_editingFailed_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerView_sendingFailed_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_messageContainerView_sendingFailed_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_myMessageIsNotTranslated_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_myMessageIsNotTranslated_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_myMessageIsNotTranslated_snapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_myMessageIsNotTranslated_snapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_translatedText_participant_snapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_videoAttachment_snapshotNoText.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_videoAttachment_snapshotNoText.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_videoAttachment_snapshotText.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageContainerView_Tests/test_videoAttachment_snapshotText.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewAvatars_Tests/test_messageListView_defaultDMChannel.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewAvatars_Tests/test_messageListView_defaultDMChannel.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewAvatars_Tests/test_messageListView_defaultGroupsChannel.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewAvatars_Tests/test_messageListView_defaultGroupsChannel.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewAvatars_Tests/test_messageListView_dmChannelAvatarsOff.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewAvatars_Tests/test_messageListView_dmChannelAvatarsOff.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewAvatars_Tests/test_messageListView_groupsChannelAvatarsOff.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewAvatars_Tests/test_messageListView_groupsChannelAvatarsOff.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewLastGroupHeader_Tests/test_messageListView_headerOnTop.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewLastGroupHeader_Tests/test_messageListView_headerOnTop.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewNewMessages_Tests/test_messageListViewNewMessages_moreMessages.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewNewMessages_Tests/test_messageListViewNewMessages_moreMessages.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewNewMessages_Tests/test_messageListViewNewMessages_moreMessagesInBetween.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewNewMessages_Tests/test_messageListViewNewMessages_moreMessagesInBetween.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewNewMessages_Tests/test_messageListViewNewMessages_noMessages.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewNewMessages_Tests/test_messageListViewNewMessages_noMessages.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewNewMessages_Tests/test_messageListViewNewMessages_singleMessage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListViewNewMessages_Tests/test_messageListViewNewMessages_singleMessage.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_jumpToUnreadButton.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_jumpToUnreadButton.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_noReactions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_noReactions.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_snapshotFallback.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_snapshotFallback.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_typingIndicator.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_typingIndicator.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_withReactions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_messageListView_withReactions.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_scrollToBottomButton_snapshotEmptyCount.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_scrollToBottomButton_snapshotEmptyCount.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_scrollToBottomButton_snapshotUnreadCount.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageListView_Tests/test_scrollToBottomButton_snapshotUnreadCount.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageEditingFailed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageEditingFailed.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageFailed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageFailed.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageReadDirect.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageReadDirect.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageReadGroup.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageReadGroup.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageSent.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotMessageSent.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotPendingSend.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotPendingSend.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotSending.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotSending.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotSyncing.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageReadIndicatorView_Tests/test_messageReadIndicatorView_snapshotSyncing.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageViewMultiRowReactions_Tests/test_messageViewMultiRowReactions_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageViewMultiRowReactions_Tests/test_messageViewMultiRowReactions_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_code_inlineOnMultipleLines.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_code_inlineOnMultipleLines.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_code_inlineOnMultipleLines.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_code_inlineOnMultipleLines.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_code_inlineOnMultipleLines.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_code_inlineOnMultipleLines.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_code_inlineOnMultipleLines.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_code_inlineOnMultipleLines.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_deletedMessageViewContainer_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_deletedMessageViewContainer_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_deletedMessageView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_deletedMessageView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkAttachmentView_shouldNotRenderLinkPreviewWithOtherAttachments.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkAttachmentView_shouldNotRenderLinkPreviewWithOtherAttachments.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkAttachmentView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkAttachmentView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkDetection_markdownPlainAndMention.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkDetection_markdownPlainAndMention.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkDetection_markdownPlainAndMention.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkDetection_markdownPlainAndMention.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkDetection_markdownPlainAndMention.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkDetection_markdownPlainAndMention.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkDetection_markdownPlainAndMention.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_linkDetection_markdownPlainAndMention.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdownAndLinkSupport_disabled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdownAndLinkSupport_disabled.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_code.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_code.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_code.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_code.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_code.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_code.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_code.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_code.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_disabledWithRegularText.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_disabledWithRegularText.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_headers.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_headers.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_headers.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_headers.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_headers.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_headers.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_headers.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_headers.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_linkSupportDisabled.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_linkSupportDisabled.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_customColor.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_customColor.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_customColor.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_customColor.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_customColor.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_customColor.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_customColor.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_customColor.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_inLists.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_inLists.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_inLists.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_inLists.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_inLists.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_inLists.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_inLists.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_inLists.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_markdownDisabled.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_markdownDisabled.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_markdownDisabled.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_markdownDisabled.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_markdownDisabled.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_markdownDisabled.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_markdownDisabled.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_links_markdownDisabled.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_mixedLists_nested.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_mixedLists_nested.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_mixedLists_nested.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_mixedLists_nested.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_mixedLists_nested.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_mixedLists_nested.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_mixedLists_nested.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_mixedLists_nested.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedList_nested_wrappedTextItem.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedList_nested_wrappedTextItem.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedList_nested_wrappedTextItem.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedList_nested_wrappedTextItem.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedList_nested_wrappedTextItem.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedList_nested_wrappedTextItem.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedList_nested_wrappedTextItem.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedList_nested_wrappedTextItem.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists_nested.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists_nested.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists_nested.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists_nested.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists_nested.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists_nested.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists_nested.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_orderedLists_nested.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_multipleLines.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_multipleLines.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_multipleLines.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_multipleLines.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_multipleLines.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_multipleLines.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_multipleLines.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_multipleLines.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_separate.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_separate.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_separate.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_separate.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_separate.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_separate.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_separate.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_quote_separate.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_text.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_text.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_text.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_text.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_text.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_text.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_text.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_text.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_thematicBreak.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_thematicBreak.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_thematicBreak.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_thematicBreak.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_thematicBreak.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_thematicBreak.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_thematicBreak.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_thematicBreak.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists_nested.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists_nested.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists_nested.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists_nested.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists_nested.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists_nested.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists_nested.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_markdown_unorderedLists_nested.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageRepliesViewShownInChannel_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageRepliesViewShownInChannel_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageRepliesView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageRepliesView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewFileText_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewFileText_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewFile_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewFile_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewGiphy_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewGiphy_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshot2Images.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshot2Images.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshot3Images.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshot3Images.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshot3ImagesAndVideo.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshot3ImagesAndVideo.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshotQuoted.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewImage_snapshotQuoted.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewJumboEmoji_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewJumboEmoji_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewTextMentionMultiple_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewTextMentionMultiple_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewTextMention_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewTextMention_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewText_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewText_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVideo_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVideo_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMeTheming_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMeTheming_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMe_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMe_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMe_snapshot.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMe_snapshot.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMe_snapshot.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMe_snapshot.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMe_snapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromMe_snapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromParticipant_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromParticipant_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromParticipant_snapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingFromParticipant_snapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromMeMultiple_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromMeMultiple_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromMeMultiple_snapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromMeMultiple_snapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromMe_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromMe_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromMe_snapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromMe_snapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromParticipant_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromParticipant_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromParticipant_snapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_messageViewVoiceRecordingWithTextFromParticipant_snapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_text_withMultiline.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_text_withMultiline.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_text_withMultiline.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_text_withMultiline.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_text_withMultiline.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_text_withMultiline.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_text_withMultiline.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_text_withMultiline.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_topLeftView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/MessageView_Tests/test_topLeftView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allComments.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allComments.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allComments.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allComments.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allOptions.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allOptions.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allOptions.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allOptions.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allVotes.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allVotes.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allVotes.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_allVotes.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_closedPoll.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_closedPoll.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_closedPoll.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_closedPoll.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_resultsSnapshot.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_resultsSnapshot.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_resultsSnapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_resultsSnapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_snapshotCommentsAndSuggestions.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_snapshotCommentsAndSuggestions.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_snapshotCommentsAndSuggestions.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_snapshotCommentsAndSuggestions.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_snapshotUniqueVotes.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_snapshotUniqueVotes.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_snapshotUniqueVotes.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/PollAttachmentView_Tests/test_pollAttachmentView_snapshotUniqueVotes.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageViewContainer_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageViewContainer_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageView_deletedSnapshot.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageView_deletedSnapshot.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageView_deletedSnapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageView_deletedSnapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageView_voiceAttachmentSnapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/QuotedMessageView_Tests/test_quotedMessageView_voiceAttachmentSnapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionAnimatableView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionAnimatableView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsAnimatableView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsAnimatableView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayContainer_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayContainer_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayView_noReactions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayView_noReactions.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayView_translated.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayView_translated.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayView_usersReactions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlayView_usersReactions.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlay_veryLongMessage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsOverlayView_Tests/test_reactionsOverlay_veryLongMessage.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsUsersView_Tests/test_reactionsUsersView_snapshotOneRow.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsUsersView_Tests/test_reactionsUsersView_snapshotOneRow.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsUsersView_Tests/test_reactionsUsersView_snapshotTwoRows.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/ReactionsUsersView_Tests/test_reactionsUsersView_snapshotTwoRows.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/TypingIndicatorView_Tests/test_typingIndicatorView_snapshot.default-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/TypingIndicatorView_Tests/test_typingIndicatorView_snapshot.default-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/TypingIndicatorView_Tests/test_typingIndicatorView_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannel/__Snapshots__/TypingIndicatorView_Tests/test_typingIndicatorView_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_audioMessage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_audioMessage.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_draftMessage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_draftMessage.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_draftMessageWithAttachment.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_draftMessageWithAttachment.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_fileMessage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_fileMessage.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_imageMessage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_imageMessage.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_pollMessage_someoneCreated.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_pollMessage_someoneCreated.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_pollMessage_someoneVoted.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_pollMessage_someoneVoted.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_pollMessage_youCreated.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_pollMessage_youCreated.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_pollMessage_youVoted.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_pollMessage_youVoted.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_translatedText_me.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_translatedText_me.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_translatedText_participant.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_translatedText_participant.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_videoMessage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListItemView_Tests/test_channelListItem_videoMessage.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_channelListView_channelAvatarUpdated.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_channelListView_channelAvatarUpdated.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_chatChannelListViewSansNavigation_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_chatChannelListViewSansNavigation_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_chatChannelListView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_chatChannelListView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_chatChannelScreen_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_chatChannelScreen_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_trailingSwipeActionsView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/ChatChannelListView_Tests/test_trailingSwipeActionsView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/LoadingView_Tests/test_loadingView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/LoadingView_Tests/test_loadingView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/LoadingView_Tests/test_redactedLoadingView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/LoadingView_Tests/test_redactedLoadingView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/MoreChannelActionsView_Tests/test_moreChannelActionsView_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/MoreChannelActionsView_Tests/test_moreChannelActionsView_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/NoChannelsView_Tests/test_noChannelsView_snapshot.default-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/NoChannelsView_Tests/test_noChannelsView_snapshot.default-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/NoChannelsView_Tests/test_noChannelsView_snapshot.extraExtraExtraLarge-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/NoChannelsView_Tests/test_noChannelsView_snapshot.extraExtraExtraLarge-light.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/NoChannelsView_Tests/test_noChannelsView_snapshot.rightToLeftLayout-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/NoChannelsView_Tests/test_noChannelsView_snapshot.rightToLeftLayout-default.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/NoChannelsView_Tests/test_noChannelsView_snapshot.small-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/NoChannelsView_Tests/test_noChannelsView_snapshot.small-dark.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_channelAvatarUpdated.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_channelAvatarUpdated.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_snapshotLoading.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_snapshotLoading.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_snapshotNoResults.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_snapshotNoResults.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_snapshotResults.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_snapshotResults.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_snapshotResults_whenChannelSearch.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatChannelList/__Snapshots__/SearchResultsView_Tests/test_searchResultsView_snapshotResults_whenChannelSearch.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_default.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_default.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_whenAttachmentIsPoll.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_whenAttachmentIsPoll.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_whenAttachments.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_whenAttachments.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_whenDraftMessage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_whenDraftMessage.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_whenDraftMessageHasAttachment.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_whenDraftMessageHasAttachment.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_withLastReplyDeleted.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_withLastReplyDeleted.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_withParentMessageDeleted.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_withParentMessageDeleted.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_withTitle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_withTitle.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_withUnreads.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListItemView_Tests/test_threadListItem_withUnreads.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_empty.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_empty.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_errorLoadingMoreThreads.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_errorLoadingMoreThreads.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_errorLoadingThreads.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_errorLoadingThreads.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_loading.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_loading.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_loadingMoreThreads.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_loadingMoreThreads.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_reloadingThreads.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_reloadingThreads.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_whenNewThreadsAvailable.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_whenNewThreadsAvailable.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_withThreads.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/ChatThreadList/__Snapshots__/ChatThreadListView_Tests/test_chatThreadListView_withThreads.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITests/Tests/CommonViews/__Snapshots__/AlertBannerViewModifier_Tests/test_alertBanner_snapshot.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITests/Tests/CommonViews/__Snapshots__/AlertBannerViewModifier_Tests/test_alertBanner_snapshot.1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/120-1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/40-1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/40-2.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/58-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/58-1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/80-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/80-1.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GetStream/stream-chat-swiftui/39714f839c7c8bd5f835cc3ca5b4a1f6830f8826/StreamChatSwiftUITestsApp/Assets.xcassets/AppIcon.appiconset/appstore.png -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSAppTransportSecurity 6 | 7 | NSAllowsLocalNetworking 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /StreamChatSwiftUITestsApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /StreamChatSwiftUITestsAppTests/Extensions/Bundle+Target.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright © 2025 Stream.io Inc. All rights reserved. 3 | // 4 | 5 | import Foundation 6 | 7 | extension Bundle { 8 | static var test: Bundle { 9 | Bundle(for: StreamChatSwiftUITests.self) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /StreamChatSwiftUITestsAppTests/Pages/StartPage.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright © 2025 Stream.io Inc. All rights reserved. 3 | // 4 | 5 | import Foundation 6 | import XCTest 7 | 8 | enum StartPage { 9 | static var startButton: XCUIElement { app.buttons["TestApp.Start"].firstMatch } 10 | } 11 | -------------------------------------------------------------------------------- /StreamChatSwiftUITestsAppTests/Pages/ThreadPage.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright © 2025 Stream.io Inc. All rights reserved. 3 | // 4 | 5 | import Foundation 6 | import XCTest 7 | 8 | class ThreadPage: MessageListPage { 9 | 10 | static var alsoSendInChannelCheckbox: XCUIElement { app.buttons["SendInChannelView"] } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /StreamChatSwiftUITestsAppTests/StreamChatSwiftUITests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright © 2025 Stream.io Inc. All rights reserved. 3 | // 4 | 5 | @_exported import StreamChatTestMockServer 6 | @_exported import StreamSwiftTestHelpers 7 | import Foundation 8 | 9 | final class StreamChatSwiftUITests {} 10 | -------------------------------------------------------------------------------- /fastlane/.env: -------------------------------------------------------------------------------- 1 | 2 | FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT=180 3 | FASTLANE_XCODEBUILD_SETTINGS_RETRIES=10 4 | FASTLANE_SKIP_ACTION_SUMMARY=true 5 | FASTLANE_HIDE_PLUGINS_TABLE=true 6 | FASTLANE_SKIP_UPDATE_CHECK=true 7 | FASTLANE_HIDE_CHANGELOG=true 8 | -------------------------------------------------------------------------------- /fastlane/Matchfile: -------------------------------------------------------------------------------- 1 | git_url("git@github.com:GetStream/ios-certificates.git") 2 | 3 | storage_mode("git") 4 | 5 | team_id("EHV7XZLAHA") 6 | -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | # 3 | # Ensure this file is checked in to source control! 4 | 5 | gem 'fastlane-plugin-versioning' 6 | gem 'fastlane-plugin-sonarcloud_metric_kit' 7 | gem 'fastlane-plugin-create_xcframework' 8 | gem 'fastlane-plugin-stream_actions', '0.3.79' 9 | -------------------------------------------------------------------------------- /hooks/regenerage-spm-package-if-needed.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # Regenerate list of files in Package.swift 3 | arch -x86_64 ./generateSPMFileLists 4 | 5 | # Add changes to the current commit 6 | git add Package.swift --------------------------------------------------------------------------------