├── .gitattributes ├── .githooks ├── post-checkout ├── post-commit ├── post-merge ├── pre-commit └── pre-push ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yaml │ ├── feature_request.md │ └── task-that-belongs-to-a-story-epic.md ├── PULL_REQUEST_TEMPLATE.md ├── release.yml └── workflows │ ├── automatic-calendar-version.yml │ ├── blocked.yml │ ├── danger.yml │ ├── integration-tests.yml │ ├── post-release.yml │ ├── translations-pr.yml │ ├── triage_incoming.yml │ ├── triage_labelled.yml │ ├── ui_tests.yml │ ├── unit_tests.yml │ └── unit_tests_enterprise.yml ├── .gitignore ├── .gitmodules ├── .periphery.yml ├── .swiftformat ├── .swiftlint.yml ├── CHANGES.md ├── CONTRIBUTING.md ├── Dangerfile.swift ├── DevelopmentAssets └── Media │ ├── landscape_test_image.jpg │ ├── landscape_test_video.mov │ ├── portrait_test_image.jpg │ ├── portrait_test_video.mp4 │ ├── preview_avatar_room.jpg │ ├── preview_avatar_user.jpg │ ├── preview_image.jpg │ ├── preview_video.jpg │ ├── test_animated_image.gif │ ├── test_apple_image.heic │ ├── test_audio.mp3 │ ├── test_image.png │ ├── test_pdf.pdf │ ├── test_rotated_image.jpg │ └── test_voice_message.m4a ├── ElementX.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ ├── IDETemplateMacros.plist │ └── xcschemes │ ├── ElementX.xcscheme │ ├── IntegrationTests.xcscheme │ ├── NSE.xcscheme │ ├── PreviewTests.xcscheme │ ├── ShareExtension.xcscheme │ ├── UITests.xcscheme │ └── UnitTests.xcscheme ├── ElementX ├── Resources │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── colors │ │ │ ├── Contents.json │ │ │ ├── accent-color.colorset │ │ │ │ └── Contents.json │ │ │ └── background-color.colorset │ │ │ │ └── Contents.json │ │ └── images │ │ │ ├── Contents.json │ │ │ ├── app-logo.imageset │ │ │ ├── Contents.json │ │ │ └── app-logo.pdf │ │ │ ├── authentication │ │ │ ├── Contents.json │ │ │ └── server-selection-icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── authentication_server_selection_icon.svg │ │ │ ├── background-bottom.imageset │ │ │ ├── Contents.json │ │ │ ├── background-bottom-dark.png │ │ │ └── background-bottom-light.png │ │ │ ├── composer │ │ │ ├── Contents.json │ │ │ ├── close-rte.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── close-rte-dark.svg │ │ │ │ └── close-rte.svg │ │ │ ├── composer-attachment.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── composer-attachment-light.svg │ │ │ └── stop-recording.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── stop-recording.svg │ │ │ ├── launch-background.imageset │ │ │ ├── Contents.json │ │ │ ├── ipad-dark.png │ │ │ ├── ipad-light.png │ │ │ ├── iphone-dark.png │ │ │ └── iphone-light.png │ │ │ ├── location │ │ │ ├── Contents.json │ │ │ ├── location-marker-shape.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── location-marker-shape.svg │ │ │ └── mapBlurred.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DarkMapBlurred.pdf │ │ │ │ └── lightMapBlurred.pdf │ │ │ ├── media │ │ │ ├── Contents.json │ │ │ ├── media-pause.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── media-pause.svg │ │ │ └── media-play.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── media-play.svg │ │ │ ├── notifications-prompt-graphic.imageset │ │ │ ├── Alerts.svg │ │ │ └── Contents.json │ │ │ └── poll-winner.imageset │ │ │ ├── Contents.json │ │ │ └── poll-winner.svg │ ├── Localizations │ │ ├── be.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── bg.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── cs.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── cy.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── de.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── el.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── en-US.lproj │ │ │ └── Localizable.strings │ │ ├── en.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ ├── SAS.strings │ │ │ ├── Untranslated.strings │ │ │ └── Untranslated.stringsdict │ │ ├── es.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── et.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── eu.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── fa.lproj │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── fi.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── fr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── hu.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── id.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── it.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── ka.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── lt.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── nb.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── nl.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── pl.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── pt-BR.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── pt.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── ro.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── ru.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── sk.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── sv.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── tr.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── uk.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ ├── ur.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── uz.lproj │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ │ ├── zh-Hans.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ ├── Localizable.stringsdict │ │ │ └── SAS.strings │ │ └── zh-Hant-TW.lproj │ │ │ ├── InfoPlist.strings │ │ │ ├── Localizable.strings │ │ │ └── Localizable.stringsdict │ └── Sounds │ │ └── message.caf ├── Sources │ ├── AppHooks │ │ ├── AppHooks.swift │ │ └── Hooks │ │ │ ├── AppSettingsHook.swift │ │ │ ├── BugReportHook.swift │ │ │ ├── CertificateValidatorHook.swift │ │ │ ├── ClientBuilderHook.swift │ │ │ └── CompoundHook.swift │ ├── Application │ │ ├── AppCoordinator.swift │ │ ├── AppCoordinatorProtocol.swift │ │ ├── AppCoordinatorStateMachine.swift │ │ ├── AppDelegate.swift │ │ ├── AppMediator.swift │ │ ├── AppMediatorProtocol.swift │ │ ├── AppSettings.swift │ │ ├── Application.swift │ │ ├── CoordinatorProtocol.swift │ │ ├── FlowCoordinatorProtocol.swift │ │ ├── Navigation │ │ │ ├── AppRoutes.swift │ │ │ ├── NavigationCoordinators.swift │ │ │ ├── NavigationModule.swift │ │ │ └── NavigationRootCoordinator.swift │ │ ├── ServiceLocator.swift │ │ ├── TargetConfiguration.swift │ │ └── Windowing │ │ │ ├── OrientationManagerProtocol.swift │ │ │ ├── SceneDelegate.swift │ │ │ ├── WindowManager.swift │ │ │ └── WindowManagerProtocol.swift │ ├── FlowCoordinators │ │ ├── AppLockFlowCoordinator.swift │ │ ├── AppLockSetupFlowCoordinator.swift │ │ ├── AuthenticationFlowCoordinator.swift │ │ ├── BugReportFlowCoordinator.swift │ │ ├── EncryptionResetFlowCoordinator.swift │ │ ├── EncryptionSettingsFlowCoordinator.swift │ │ ├── MediaEventsTimelineFlowCoordinator.swift │ │ ├── OnboardingFlowCoordinator.swift │ │ ├── PinnedEventsTimelineFlowCoordinator.swift │ │ ├── RoomFlowCoordinator.swift │ │ ├── RoomFlowCoordinatorStateMachine.swift │ │ ├── RoomRolesAndPermissionsFlowCoordinator.swift │ │ ├── SettingsFlowCoordinator.swift │ │ ├── UserSessionFlowCoordinator.swift │ │ └── UserSessionFlowCoordinatorStateMachine.swift │ ├── Generated │ │ ├── Assets.swift │ │ ├── Strings+SAS.swift │ │ ├── Strings+Untranslated.swift │ │ └── Strings.swift │ ├── Mocks │ │ ├── AggregatedReactionMock.swift │ │ ├── AppMediatorMock.swift │ │ ├── AuthenticationClientBuilderFactoryMock.swift │ │ ├── AuthenticationClientBuilderMock.swift │ │ ├── BannedRoomProxyMock.swift │ │ ├── BugReportServiceMock.swift │ │ ├── ClientProxyMock.swift │ │ ├── ComposerDraftServiceMock.swift │ │ ├── ElementCallServiceMock.swift │ │ ├── Generated │ │ │ ├── GeneratedMocks.swift │ │ │ └── SDKGeneratedMocks.swift │ │ ├── InvitedRoomProxyMock.swift │ │ ├── JoinedRoomProxyMock.swift │ │ ├── KnockRequestProxyMock.swift │ │ ├── KnockedRoomProxyMock.swift │ │ ├── MediaProviderMock.swift │ │ ├── NetworkMonitorMock.swift │ │ ├── NotificationSettingsProxyMock.swift │ │ ├── PHGPostHogMock.swift │ │ ├── PhotoLibraryManagerMock.swift │ │ ├── PollMock.swift │ │ ├── RoomDirectorySearchMock.swift │ │ ├── RoomMemberProxyMock.swift │ │ ├── RoomNotificationSettingsProxyMock.swift │ │ ├── RoomPreviewProxyMock.swift │ │ ├── RoomSummaryProviderMock.swift │ │ ├── SDK │ │ │ ├── ClientSDKMock.swift │ │ │ ├── EventTimelineItem.swift │ │ │ └── IdentityResetHandleSDKMock.swift │ │ ├── SecureBackupControllerMock.swift │ │ ├── SessionVerificationControllerProxyMock.swift │ │ ├── TimelineControllerFactoryMock.swift │ │ ├── TimelineProviderMock.swift │ │ ├── TimelineProxyMock.swift │ │ ├── UserIdentityProxyMock.swift │ │ ├── UserIndicatorControllerMock.swift │ │ ├── UserProfile+Mock.swift │ │ ├── UserSessionMock.swift │ │ └── UserSessionStoreMock.swift │ ├── Other │ │ ├── AccessibilityIdentifiers.swift │ │ ├── Analytics │ │ │ └── ScreenTrackerViewModifier.swift │ │ ├── AppAppearance.swift │ │ ├── Avatars.swift │ │ ├── BlurHashDecode.swift │ │ ├── BlurHashEncode.swift │ │ ├── CancellableTask.swift │ │ ├── CollapsibleFlowLayout │ │ │ └── CollapsibleReactionLayout.swift │ │ ├── Consumable.swift │ │ ├── CurrentValuePublisher.swift │ │ ├── EffectsScene │ │ │ ├── ConfettiScene.scn │ │ │ ├── EffectsScene.swift │ │ │ └── EffectsView.swift │ │ ├── ExpiringTaskRunner.swift │ │ ├── Extensions │ │ │ ├── AVMetadataMachineReadableCodeObject.swift │ │ │ ├── Alert.swift │ │ │ ├── Array.swift │ │ │ ├── AsyncSequence.swift │ │ │ ├── AttributedString.swift │ │ │ ├── Bundle.swift │ │ │ ├── CharacterSet.swift │ │ │ ├── ClientBuilder.swift │ │ │ ├── Collection.swift │ │ │ ├── Comparable.swift │ │ │ ├── CompoundIcon.swift │ │ │ ├── ConfirmationDialog.swift │ │ │ ├── Data.swift │ │ │ ├── Date.swift │ │ │ ├── Dictionary.swift │ │ │ ├── Duration.swift │ │ │ ├── Encodable.swift │ │ │ ├── FileManager.swift │ │ │ ├── ImageCache.swift │ │ │ ├── Label.swift │ │ │ ├── LayoutDirection.swift │ │ │ ├── NSItemProvider.swift │ │ │ ├── NSRegularExpresion.swift │ │ │ ├── Observable.swift │ │ │ ├── OrderedSet.swift │ │ │ ├── PlatformViewVersionPredicate.swift │ │ │ ├── ProcessInfo.swift │ │ │ ├── ProposedViewSize.swift │ │ │ ├── Publisher.swift │ │ │ ├── Result.swift │ │ │ ├── Section.swift │ │ │ ├── Snapshotting.swift │ │ │ ├── String.swift │ │ │ ├── Task.swift │ │ │ ├── UIDevice.swift │ │ │ ├── UIView.swift │ │ │ ├── UNNotificationContent.swift │ │ │ ├── URL.swift │ │ │ ├── URLComponents.swift │ │ │ ├── URLSession.swift │ │ │ ├── UTType.swift │ │ │ ├── XCTestCase.swift │ │ │ └── XCUIElement.swift │ │ ├── HTMLParsing │ │ │ ├── AttributedStringBuilder.swift │ │ │ ├── AttributedStringBuilderProtocol.swift │ │ │ ├── DTHTMLElement+AttributedStringBuilder.swift │ │ │ ├── ElementXAttributeScope.swift │ │ │ ├── PhishingDetector.swift │ │ │ ├── UIFont+AttributedStringBuilder.h │ │ │ └── UIFont+AttributedStringBuilder.m │ │ ├── InfoPlistReader.swift │ │ ├── Logging │ │ │ ├── ExtensionLogger.swift │ │ │ ├── LogLevel.swift │ │ │ ├── MXLog.swift │ │ │ ├── TraceLogPack.swift │ │ │ └── Tracing.swift │ │ ├── MapLibre │ │ │ ├── LocationAnnotation.swift │ │ │ ├── MapLibreMapView.swift │ │ │ ├── MapLibreModels.swift │ │ │ ├── MapLibreStaticMapView.swift │ │ │ ├── MapTilerConfiguration.swift │ │ │ └── MapTilerURLBuilderProtocol.swift │ │ ├── MatrixEntityRegex.swift │ │ ├── NetworkMonitor │ │ │ ├── NetworkMonitor.swift │ │ │ └── NetworkMonitorProtocol.swift │ │ ├── Pills │ │ │ ├── MentionBuilder.swift │ │ │ ├── MessageText.swift │ │ │ ├── PillAttachmentViewProvider.swift │ │ │ ├── PillContext.swift │ │ │ ├── PillTextAttachment.swift │ │ │ ├── PillTextAttachmentData.swift │ │ │ ├── PillUtilities.swift │ │ │ ├── PillView.swift │ │ │ └── PlainMentionBuilder.swift │ │ ├── Progress │ │ │ ├── ProgressCursorModifier.swift │ │ │ └── ProgressMaskModifier.swift │ │ ├── SDKListener.swift │ │ ├── ScrollViewAdapter.swift │ │ ├── ShareToMapsAppActivity.swift │ │ ├── SwiftUI │ │ │ ├── Animation │ │ │ │ ├── ElementAnimations.swift │ │ │ │ ├── ShimmerModifier.swift │ │ │ │ └── ZoomTransition.swift │ │ │ ├── Layout │ │ │ │ ├── CustomLayoutLabelStyle.swift │ │ │ │ ├── FullscreenDialog.swift │ │ │ │ ├── MenuSheetLabelStyle.swift │ │ │ │ ├── ReadableFrameModifier.swift │ │ │ │ ├── TimelineMediaFrame.swift │ │ │ │ └── ViewFrameReader.swift │ │ │ ├── Search.swift │ │ │ ├── ShouldScrollOnKeyboardDidShow.swift │ │ │ ├── Styles │ │ │ │ ├── ElementTextFieldStyle.swift │ │ │ │ └── FormButtonStyles.swift │ │ │ ├── VerificationBadge.swift │ │ │ ├── ViewModel │ │ │ │ ├── BindableState.swift │ │ │ │ ├── StateStoreViewModel.swift │ │ │ │ └── StateStoreViewModelV2.swift │ │ │ └── Views │ │ │ │ ├── AppActivityView.swift │ │ │ │ ├── AvatarHeaderView.swift │ │ │ │ ├── BadgeLabel.swift │ │ │ │ ├── BadgeView.swift │ │ │ │ ├── BigIcon.swift │ │ │ │ ├── BlurEffectView.swift │ │ │ │ ├── ButtonStyle.swift │ │ │ │ ├── EditRoomAddressListRow.swift │ │ │ │ ├── HorizontalHighlightGradient.swift │ │ │ │ ├── LoadableAvatarImage.swift │ │ │ │ ├── LoadableImage.swift │ │ │ │ ├── LocationMarkerView.swift │ │ │ │ ├── MatrixUserShareLink.swift │ │ │ │ ├── OverridableAvatarImage.swift │ │ │ │ ├── PlaceholderAvatarImage.swift │ │ │ │ ├── RoomAvatarImage.swift │ │ │ │ ├── RoomHeaderView.swift │ │ │ │ ├── RoomInviterLabel.swift │ │ │ │ ├── RoundedCornerShape.swift │ │ │ │ ├── SFNumberedListView.swift │ │ │ │ ├── StackedAvatarsView.swift │ │ │ │ ├── TombstonedAvatarImage.swift │ │ │ │ ├── UserProfileListRow.swift │ │ │ │ └── VisualListItem.swift │ │ ├── TestablePreview.swift │ │ ├── UserAgentBuilder.swift │ │ ├── UserIndicator │ │ │ ├── UserIndicator.swift │ │ │ ├── UserIndicatorController.swift │ │ │ ├── UserIndicatorControllerProtocol.swift │ │ │ ├── UserIndicatorModalView.swift │ │ │ ├── UserIndicatorPresenter.swift │ │ │ └── UserIndicatorToastView.swift │ │ ├── UserPreference.swift │ │ └── VoiceMessage │ │ │ ├── EstimatedWaveformView.swift │ │ │ ├── VoiceMessageButton.swift │ │ │ ├── WaveformCursorView.swift │ │ │ ├── WaveformInteractionModifier.swift │ │ │ └── WaveformSource.swift │ ├── Screens │ │ ├── AppLock │ │ │ ├── AppLockScreen │ │ │ │ ├── AppLockScreenCoordinator.swift │ │ │ │ ├── AppLockScreenModels.swift │ │ │ │ ├── AppLockScreenViewModel.swift │ │ │ │ ├── AppLockScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ ├── AppLockScreen.swift │ │ │ │ │ └── AppLockScreenPINKeypad.swift │ │ │ ├── AppLockSetupBiometricsScreen │ │ │ │ ├── AppLockSetupBiometricsScreenCoordinator.swift │ │ │ │ ├── AppLockSetupBiometricsScreenModels.swift │ │ │ │ ├── AppLockSetupBiometricsScreenViewModel.swift │ │ │ │ ├── AppLockSetupBiometricsScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── AppLockSetupBiometricsScreen.swift │ │ │ ├── AppLockSetupPINScreen │ │ │ │ ├── AppLockSetupPINScreenCoordinator.swift │ │ │ │ ├── AppLockSetupPINScreenModels.swift │ │ │ │ ├── AppLockSetupPINScreenViewModel.swift │ │ │ │ ├── AppLockSetupPINScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ ├── AppLockSetupPINScreen.swift │ │ │ │ │ └── PINTextField.swift │ │ │ ├── AppLockSetupSettingsScreen │ │ │ │ ├── AppLockSetupSettingsScreenCoordinator.swift │ │ │ │ ├── AppLockSetupSettingsScreenModels.swift │ │ │ │ ├── AppLockSetupSettingsScreenViewModel.swift │ │ │ │ ├── AppLockSetupSettingsScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── AppLockSetupSettingsScreen.swift │ │ │ └── Common │ │ │ │ └── LABiometryType.swift │ │ ├── Authentication │ │ │ ├── LoginScreen │ │ │ │ ├── LoginHomeserver.swift │ │ │ │ ├── LoginMode.swift │ │ │ │ ├── LoginScreenCoordinator.swift │ │ │ │ ├── LoginScreenModels.swift │ │ │ │ ├── LoginScreenViewModel.swift │ │ │ │ ├── LoginScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── LoginScreen.swift │ │ │ ├── OIDCAuthenticationPresenter.swift │ │ │ ├── ServerConfirmationScreen │ │ │ │ ├── ServerConfirmationScreenCoordinator.swift │ │ │ │ ├── ServerConfirmationScreenModels.swift │ │ │ │ ├── ServerConfirmationScreenViewModel.swift │ │ │ │ ├── ServerConfirmationScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── ServerConfirmationScreen.swift │ │ │ ├── ServerSelectionScreen │ │ │ │ ├── ServerSelectionScreenCoordinator.swift │ │ │ │ ├── ServerSelectionScreenModels.swift │ │ │ │ ├── ServerSelectionScreenViewModel.swift │ │ │ │ ├── ServerSelectionScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── ServerSelectionScreen.swift │ │ │ ├── SoftLogoutScreen │ │ │ │ ├── MockSoftLogoutScreenState.swift │ │ │ │ ├── SoftLogoutScreenCoordinator.swift │ │ │ │ ├── SoftLogoutScreenModels.swift │ │ │ │ ├── SoftLogoutScreenViewModel.swift │ │ │ │ ├── SoftLogoutScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── SoftLogoutScreen.swift │ │ │ ├── StartScreen │ │ │ │ ├── AuthenticationStartScreenCoordinator.swift │ │ │ │ ├── AuthenticationStartScreenModels.swift │ │ │ │ ├── AuthenticationStartScreenViewModel.swift │ │ │ │ ├── AuthenticationStartScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ ├── AuthenticationStartLogo.swift │ │ │ │ │ ├── AuthenticationStartScreen.swift │ │ │ │ │ └── AuthenticationStartScreenBackgroundImage.swift │ │ │ └── UIConstants.swift │ │ ├── BlockedUsersScreen │ │ │ ├── BlockedUsersScreenCoordinator.swift │ │ │ ├── BlockedUsersScreenModels.swift │ │ │ ├── BlockedUsersScreenViewModel.swift │ │ │ ├── BlockedUsersScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── BlockedUsersScreen.swift │ │ ├── BugReportScreen │ │ │ ├── BugReportScreenCoordinator.swift │ │ │ ├── BugReportScreenModels.swift │ │ │ ├── BugReportScreenViewModel.swift │ │ │ ├── BugReportScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── BugReportScreen.swift │ │ ├── CallScreen │ │ │ ├── CallScreenCoordinator.swift │ │ │ ├── CallScreenModels.swift │ │ │ ├── CallScreenViewModel.swift │ │ │ ├── CallScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── CallScreen.swift │ │ ├── CreatePollScreen │ │ │ ├── PollFormScreenCoordinator.swift │ │ │ ├── PollFormScreenModels.swift │ │ │ ├── PollFormScreenViewModel.swift │ │ │ ├── PollFormScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── PollFormScreen.swift │ │ ├── CreateRoom │ │ │ ├── CreateRoomCoordinator.swift │ │ │ ├── CreateRoomModels.swift │ │ │ ├── CreateRoomViewModel.swift │ │ │ ├── CreateRoomViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── CreateRoomScreen.swift │ │ ├── DeclineAndBlockScreen │ │ │ ├── DeclineAndBlockScreenCoordinator.swift │ │ │ ├── DeclineAndBlockScreenModels.swift │ │ │ ├── DeclineAndBlockScreenViewModel.swift │ │ │ ├── DeclineAndBlockScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── DeclineAndBlockScreen.swift │ │ ├── EditRoomAddressScreen │ │ │ ├── EditRoomAddressScreenCoordinator.swift │ │ │ ├── EditRoomAddressScreenModels.swift │ │ │ ├── EditRoomAddressScreenViewModel.swift │ │ │ ├── EditRoomAddressScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── EditRoomAddressScreen.swift │ │ ├── EmojiPickerScreen │ │ │ ├── EmojiPickerScreenCoordinator.swift │ │ │ ├── EmojiPickerScreenModels.swift │ │ │ ├── EmojiPickerScreenViewModel.swift │ │ │ ├── EmojiPickerScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── EmojiPickerScreen.swift │ │ │ │ └── EmojiPickerScreenHeaderView.swift │ │ ├── EncryptionReset │ │ │ ├── EncryptionResetPasswordScreen │ │ │ │ ├── EncryptionResetPasswordScreenCoordinator.swift │ │ │ │ ├── EncryptionResetPasswordScreenModels.swift │ │ │ │ ├── EncryptionResetPasswordScreenViewModel.swift │ │ │ │ ├── EncryptionResetPasswordScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── EncryptionResetPasswordScreen.swift │ │ │ └── EncryptionResetScreen │ │ │ │ ├── EncryptionResetScreenCoordinator.swift │ │ │ │ ├── EncryptionResetScreenModels.swift │ │ │ │ ├── EncryptionResetScreenViewModel.swift │ │ │ │ ├── EncryptionResetScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ └── EncryptionResetScreen.swift │ │ ├── FilePreviewScreen │ │ │ ├── InteractiveQuickLook.swift │ │ │ ├── PhotoLibraryManager.swift │ │ │ ├── TimelineMediaPreviewDataSource.swift │ │ │ ├── TimelineMediaPreviewModels.swift │ │ │ ├── TimelineMediaPreviewModifier.swift │ │ │ ├── TimelineMediaPreviewViewModel.swift │ │ │ └── View │ │ │ │ ├── TimelineMediaPreviewController.swift │ │ │ │ ├── TimelineMediaPreviewDetailsView.swift │ │ │ │ ├── TimelineMediaPreviewFileExportPicker.swift │ │ │ │ └── TimelineMediaPreviewRedactConfirmationView.swift │ │ ├── GlobalSearchScreen │ │ │ ├── GlobalSearchScreenCoordinator.swift │ │ │ ├── GlobalSearchScreenModels.swift │ │ │ ├── GlobalSearchScreenViewModel.swift │ │ │ ├── GlobalSearchScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── GlobalSearchScreen.swift │ │ │ │ └── GlobalSearchScreenCell.swift │ │ ├── HomeScreen │ │ │ ├── HomeScreenCoordinator.swift │ │ │ ├── HomeScreenModels.swift │ │ │ ├── HomeScreenViewModel.swift │ │ │ ├── HomeScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── BloomModifier.swift │ │ │ │ ├── Filters │ │ │ │ ├── RoomListFilterModels.swift │ │ │ │ ├── RoomListFilterView.swift │ │ │ │ ├── RoomListFiltersEmptyStateView.swift │ │ │ │ └── RoomListFiltersView.swift │ │ │ │ ├── HomeScreen.swift │ │ │ │ ├── HomeScreenContent.swift │ │ │ │ ├── HomeScreenEmptyStateView.swift │ │ │ │ ├── HomeScreenInviteCell.swift │ │ │ │ ├── HomeScreenKnockedCell.swift │ │ │ │ ├── HomeScreenRecoveryKeyConfirmationBanner.swift │ │ │ │ ├── HomeScreenRoomCell.swift │ │ │ │ └── HomeScreenRoomList.swift │ │ ├── InviteUsersScreen │ │ │ ├── InviteUsersScreenCoordinator.swift │ │ │ ├── InviteUsersScreenModels.swift │ │ │ ├── InviteUsersScreenViewModel.swift │ │ │ ├── InviteUsersScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── InviteUsersScreen.swift │ │ │ │ └── InviteUsersScreenSelectedItem.swift │ │ ├── JoinRoomScreen │ │ │ ├── JoinRoomScreenCoordinator.swift │ │ │ ├── JoinRoomScreenModels.swift │ │ │ ├── JoinRoomScreenViewModel.swift │ │ │ ├── JoinRoomScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── JoinRoomScreen.swift │ │ ├── KnockRequestsListScreen │ │ │ ├── KnockRequestsListScreenCoordinator.swift │ │ │ ├── KnockRequestsListScreenModels.swift │ │ │ ├── KnockRequestsListScreenViewModel.swift │ │ │ ├── KnockRequestsListScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── KnockRequestCell.swift │ │ │ │ ├── KnockRequestsListEmptyStateView.swift │ │ │ │ └── KnockRequestsListScreen.swift │ │ ├── LocationSharing │ │ │ ├── LocationSharingScreenModels.swift │ │ │ ├── StaticLocationScreenCoordinator.swift │ │ │ ├── StaticLocationScreenViewModel.swift │ │ │ ├── StaticLocationScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── StaticLocationScreen.swift │ │ ├── LogViewerScreen │ │ │ ├── LogViewerScreenCoordinator.swift │ │ │ ├── LogViewerScreenModels.swift │ │ │ ├── LogViewerScreenViewModel.swift │ │ │ ├── LogViewerScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── LogViewerScreen.swift │ │ ├── ManageRoomMemberSheet │ │ │ ├── ManageRoomMemberSheetModels.swift │ │ │ ├── ManageRoomMemberSheetViewModel.swift │ │ │ ├── ManageRoomMemberSheetViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── ManageRoomMemberSheetView.swift │ │ ├── MediaEventsTimelineScreen │ │ │ ├── MediaEventsTimelineScreenCoordinator.swift │ │ │ ├── MediaEventsTimelineScreenModels.swift │ │ │ ├── MediaEventsTimelineScreenViewModel.swift │ │ │ ├── MediaEventsTimelineScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── MediaEventsTimelineScreen.swift │ │ │ │ └── TimelineViews │ │ │ │ ├── AudioFileEventsTimelineView.swift │ │ │ │ ├── FileMediaEventsTimelineView.swift │ │ │ │ ├── ImageMediaEventsTimelineView.swift │ │ │ │ ├── SeparatorMediaEventsTimelineView.swift │ │ │ │ ├── VideoMediaEventsTimelineView.swift │ │ │ │ └── VoiceMessageMediaEventsTimelineView.swift │ │ ├── MediaPickerScreen │ │ │ ├── CameraPicker.swift │ │ │ ├── DocumentPicker.swift │ │ │ ├── MediaPickerScreenCoordinator.swift │ │ │ └── PhotoLibraryPicker.swift │ │ ├── MediaUploadPreviewScreen │ │ │ ├── MediaUploadPreviewScreenCoordinator.swift │ │ │ ├── MediaUploadPreviewScreenModels.swift │ │ │ ├── MediaUploadPreviewScreenViewModel.swift │ │ │ ├── MediaUploadPreviewScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── MediaUploadPreviewScreen.swift │ │ ├── MessageForwardingScreen │ │ │ ├── MessageForwardingScreenCoordinator.swift │ │ │ ├── MessageForwardingScreenModels.swift │ │ │ ├── MessageForwardingScreenViewModel.swift │ │ │ ├── MessageForwardingScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── MessageForwardingScreen.swift │ │ ├── Onboarding │ │ │ ├── AnalyticsPromptScreen │ │ │ │ ├── AnalyticsPromptScreenCoordinator.swift │ │ │ │ ├── AnalyticsPromptScreenModels.swift │ │ │ │ ├── AnalyticsPromptScreenViewModel.swift │ │ │ │ ├── AnalyticsPromptScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── AnalyticsPromptScreen.swift │ │ │ ├── IdentityConfirmationScreen │ │ │ │ ├── IdentityConfirmationScreenCoordinator.swift │ │ │ │ ├── IdentityConfirmationScreenModels.swift │ │ │ │ ├── IdentityConfirmationScreenViewModel.swift │ │ │ │ ├── IdentityConfirmationScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── IdentityConfirmationScreen.swift │ │ │ ├── IdentityConfirmedScreen │ │ │ │ ├── IdentityConfirmedScreenCoordinator.swift │ │ │ │ ├── IdentityConfirmedScreenModels.swift │ │ │ │ ├── IdentityConfirmedScreenViewModel.swift │ │ │ │ ├── IdentityConfirmedScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── IdentityConfirmedScreen.swift │ │ │ ├── NotificationPermissionsScreen │ │ │ │ ├── NotificationPermissionsScreenCoordinator.swift │ │ │ │ ├── NotificationPermissionsScreenModels.swift │ │ │ │ ├── NotificationPermissionsScreenViewModel.swift │ │ │ │ ├── NotificationPermissionsScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── NotificationPermissionsScreen.swift │ │ │ └── SessionVerificationScreen │ │ │ │ ├── SessionVerificationScreenCoordinator.swift │ │ │ │ ├── SessionVerificationScreenModels.swift │ │ │ │ ├── SessionVerificationScreenStateMachine.swift │ │ │ │ ├── SessionVerificationScreenViewModel.swift │ │ │ │ ├── SessionVerificationScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ ├── SessionVerificationRequestDetailsView.swift │ │ │ │ └── SessionVerificationScreen.swift │ │ ├── Other │ │ │ ├── PlaceholderScreenCoordinator.swift │ │ │ └── SplashScreenCoordinator.swift │ │ ├── PinnedEventsTimelineScreen │ │ │ ├── PinnedEventsTimelineScreenCoordinator.swift │ │ │ ├── PinnedEventsTimelineScreenModels.swift │ │ │ ├── PinnedEventsTimelineScreenViewModel.swift │ │ │ ├── PinnedEventsTimelineScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── PinnedEventsTimelineScreen.swift │ │ ├── QRCodeLoginScreen │ │ │ ├── QRCodeLoginScreenCoordinator.swift │ │ │ ├── QRCodeLoginScreenModels.swift │ │ │ ├── QRCodeLoginScreenViewModel.swift │ │ │ ├── QRCodeLoginScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── QRCodeLoginScreen.swift │ │ │ │ └── QRCodeScannerView.swift │ │ ├── ReportContentScreen │ │ │ ├── ReportContentScreenCoordinator.swift │ │ │ ├── ReportContentScreenModels.swift │ │ │ ├── ReportContentScreenViewModel.swift │ │ │ ├── ReportContentScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── ReportContentScreen.swift │ │ ├── ReportRoomScreen │ │ │ ├── ReportRoomScreenCoordinator.swift │ │ │ ├── ReportRoomScreenModels.swift │ │ │ ├── ReportRoomScreenViewModel.swift │ │ │ ├── ReportRoomScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── ReportRoomScreen.swift │ │ ├── ResolveVerifiedUserSendFailureScreen │ │ │ ├── ResolveVerifiedUserSendFailureScreenCoordinator.swift │ │ │ ├── ResolveVerifiedUserSendFailureScreenModels.swift │ │ │ ├── ResolveVerifiedUserSendFailureScreenViewModel.swift │ │ │ ├── ResolveVerifiedUserSendFailureScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── ResolveVerifiedUserSendFailureScreen.swift │ │ ├── RoomChangePermissionsScreen │ │ │ ├── RoomChangePermissionsScreenCoordinator.swift │ │ │ ├── RoomChangePermissionsScreenModels.swift │ │ │ ├── RoomChangePermissionsScreenViewModel.swift │ │ │ ├── RoomChangePermissionsScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── RoomChangePermissionsScreen.swift │ │ ├── RoomChangeRolesScreen │ │ │ ├── RoomChangeRolesScreenCoordinator.swift │ │ │ ├── RoomChangeRolesScreenModels.swift │ │ │ ├── RoomChangeRolesScreenViewModel.swift │ │ │ ├── RoomChangeRolesScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── RoomChangeRolesScreen.swift │ │ │ │ ├── RoomChangeRolesScreenRow.swift │ │ │ │ ├── RoomChangeRolesScreenSection.swift │ │ │ │ └── RoomChangeRolesScreenSelectedItem.swift │ │ ├── RoomDetailsEditScreen │ │ │ ├── RoomDetailsEditScreenCoordinator.swift │ │ │ ├── RoomDetailsEditScreenModels.swift │ │ │ ├── RoomDetailsEditScreenViewModel.swift │ │ │ ├── RoomDetailsEditScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── RoomDetailsEditScreen.swift │ │ ├── RoomDetailsScreen │ │ │ ├── RoomDetailsScreenCoordinator.swift │ │ │ ├── RoomDetailsScreenModels.swift │ │ │ ├── RoomDetailsScreenViewModel.swift │ │ │ ├── RoomDetailsScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── RoomDetailsScreen.swift │ │ ├── RoomDirectorySearchScreen │ │ │ ├── RoomDirectorySearchScreenCoordinator.swift │ │ │ ├── RoomDirectorySearchScreenModels.swift │ │ │ ├── RoomDirectorySearchScreenScreenModelProtocol.swift │ │ │ ├── RoomDirectorySearchScreenViewModel.swift │ │ │ └── View │ │ │ │ ├── RoomDirectoryCell.swift │ │ │ │ └── RoomDirectorySearchScreen.swift │ │ ├── RoomMemberDetailsScreen │ │ │ ├── RoomMemberDetailsScreenCoordinator.swift │ │ │ ├── RoomMemberDetailsScreenModels.swift │ │ │ ├── RoomMemberDetailsScreenViewModel.swift │ │ │ ├── RoomMemberDetailsScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── RoomMemberDetailsScreen.swift │ │ ├── RoomMemberListScreen │ │ │ ├── RoomMembersListScreenCoordinator.swift │ │ │ ├── RoomMembersListScreenModels.swift │ │ │ ├── RoomMembersListScreenViewModel.swift │ │ │ ├── RoomMembersListScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── RoomMembersListScreen.swift │ │ │ │ └── RoomMembersListScreenMemberCell.swift │ │ ├── RoomNotificationSettingsScreen │ │ │ ├── RoomNotificationSettingsScreenCoordinator.swift │ │ │ ├── RoomNotificationSettingsScreenModels.swift │ │ │ ├── RoomNotificationSettingsScreenViewModel.swift │ │ │ ├── RoomNotificationSettingsScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── RoomNotificationSettingsCustomSectionView.swift │ │ │ │ ├── RoomNotificationSettingsScreen.swift │ │ │ │ └── RoomNotificationSettingsUserDefinedScreen.swift │ │ ├── RoomPollsHistoryScreen │ │ │ ├── RoomPollsHistoryScreenCoordinator.swift │ │ │ ├── RoomPollsHistoryScreenModels.swift │ │ │ ├── RoomPollsHistoryScreenViewModel.swift │ │ │ ├── RoomPollsHistoryScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── RoomPollsHistoryScreen.swift │ │ ├── RoomRolesAndPermissionsScreen │ │ │ ├── RoomRolesAndPermissionsScreenCoordinator.swift │ │ │ ├── RoomRolesAndPermissionsScreenModels.swift │ │ │ ├── RoomRolesAndPermissionsScreenViewModel.swift │ │ │ ├── RoomRolesAndPermissionsScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── RoomRolesAndPermissionsScreen.swift │ │ ├── RoomScreen │ │ │ ├── ComposerToolbar │ │ │ │ ├── CompletionSuggestionService.swift │ │ │ │ ├── CompletionSuggestionServiceProtocol.swift │ │ │ │ ├── ComposerToolbarModels.swift │ │ │ │ ├── ComposerToolbarViewModel.swift │ │ │ │ ├── ComposerToolbarViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ ├── CompletionSuggestionView.swift │ │ │ │ │ ├── ComposerToolbar.swift │ │ │ │ │ ├── FormattingToolbar.swift │ │ │ │ │ ├── MentionSuggestionItemView.swift │ │ │ │ │ ├── MessageComposer.swift │ │ │ │ │ ├── MessageComposerTextField.swift │ │ │ │ │ ├── RoomAttachmentPicker.swift │ │ │ │ │ ├── VoiceMessagePreviewComposer.swift │ │ │ │ │ ├── VoiceMessageRecordingButton.swift │ │ │ │ │ ├── VoiceMessageRecordingComposer.swift │ │ │ │ │ └── VoiceMessageRecordingView.swift │ │ │ ├── RoomScreenCoordinator.swift │ │ │ ├── RoomScreenModels.swift │ │ │ ├── RoomScreenViewModel.swift │ │ │ ├── RoomScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── KnockRequestsBannerView.swift │ │ │ │ ├── PinnedItemsBanner │ │ │ │ ├── PinnedItemsBannerView.swift │ │ │ │ └── PinnedItemsIndicatorView.swift │ │ │ │ ├── RoomScreen.swift │ │ │ │ ├── RoomScreenFooterView.swift │ │ │ │ └── SwipeRightAction.swift │ │ ├── RoomSelectionScreen │ │ │ ├── RoomSelectionScreenCoordinator.swift │ │ │ ├── RoomSelectionScreenModels.swift │ │ │ ├── RoomSelectionScreenViewModel.swift │ │ │ ├── RoomSelectionScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── RoomSelectionScreen.swift │ │ ├── SecureBackup │ │ │ ├── SecureBackupKeyBackupScreen │ │ │ │ ├── SecureBackupKeyBackupScreenCoordinator.swift │ │ │ │ ├── SecureBackupKeyBackupScreenModels.swift │ │ │ │ ├── SecureBackupKeyBackupScreenViewModel.swift │ │ │ │ ├── SecureBackupKeyBackupScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── SecureBackupKeyBackupScreen.swift │ │ │ ├── SecureBackupLogoutConfirmationScreen │ │ │ │ ├── SecureBackupLogoutConfirmationScreenCoordinator.swift │ │ │ │ ├── SecureBackupLogoutConfirmationScreenModels.swift │ │ │ │ ├── SecureBackupLogoutConfirmationScreenViewModel.swift │ │ │ │ ├── SecureBackupLogoutConfirmationScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── SecureBackupLogoutConfirmationScreen.swift │ │ │ ├── SecureBackupRecoveryKeyScreen │ │ │ │ ├── SecureBackupRecoveryKeyScreenCoordinator.swift │ │ │ │ ├── SecureBackupRecoveryKeyScreenModels.swift │ │ │ │ ├── SecureBackupRecoveryKeyScreenViewModel.swift │ │ │ │ ├── SecureBackupRecoveryKeyScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── SecureBackupRecoveryKeyScreen.swift │ │ │ └── SecureBackupScreen │ │ │ │ ├── SecureBackupScreenCoordinator.swift │ │ │ │ ├── SecureBackupScreenModels.swift │ │ │ │ ├── SecureBackupScreenViewModel.swift │ │ │ │ ├── SecureBackupScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ └── SecureBackupScreen.swift │ │ ├── SecurityAndPrivacyScreen │ │ │ ├── SecurityAndPrivacyScreenCoordinator.swift │ │ │ ├── SecurityAndPrivacyScreenModels.swift │ │ │ ├── SecurityAndPrivacyScreenViewModel.swift │ │ │ ├── SecurityAndPrivacyScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── SecurityAndPrivacyScreen.swift │ │ ├── Settings │ │ │ ├── AccountSettings │ │ │ │ └── OIDCAccountSettingsPresenter.swift │ │ │ ├── AdvancedSettingsScreen │ │ │ │ ├── AdvancedSettingsScreenCoordinator.swift │ │ │ │ ├── AdvancedSettingsScreenModels.swift │ │ │ │ ├── AdvancedSettingsScreenViewModel.swift │ │ │ │ ├── AdvancedSettingsScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── AdvancedSettingsScreen.swift │ │ │ ├── AnalyticsSettingsScreen │ │ │ │ ├── AnalyticsSettingsScreenCoordinator.swift │ │ │ │ ├── AnalyticsSettingsScreenModels.swift │ │ │ │ ├── AnalyticsSettingsScreenViewModel.swift │ │ │ │ ├── AnalyticsSettingsScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── AnalyticsSettingsScreen.swift │ │ │ ├── DeactivateAccountScreen │ │ │ │ ├── DeactivateAccountScreenCoordinator.swift │ │ │ │ ├── DeactivateAccountScreenModels.swift │ │ │ │ ├── DeactivateAccountScreenViewModel.swift │ │ │ │ ├── DeactivateAccountScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── DeactivateAccountScreen.swift │ │ │ ├── DeveloperOptionsScreen │ │ │ │ ├── DeveloperOptionsScreenCoordinator.swift │ │ │ │ ├── DeveloperOptionsScreenModels.swift │ │ │ │ ├── DeveloperOptionsScreenViewModel.swift │ │ │ │ ├── DeveloperOptionsScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── DeveloperOptionsScreen.swift │ │ │ ├── LegalInformationScreen │ │ │ │ ├── LegalInformationScreenCoordinator.swift │ │ │ │ ├── LegalInformationScreenModels.swift │ │ │ │ ├── LegalInformationScreenViewModel.swift │ │ │ │ ├── LegalInformationScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── LegalInformationScreen.swift │ │ │ ├── NotificationSettingsEditScreen │ │ │ │ ├── NotificationSettingsEditScreenCoordinator.swift │ │ │ │ ├── NotificationSettingsEditScreenModels.swift │ │ │ │ ├── NotificationSettingsEditScreenViewModel.swift │ │ │ │ ├── NotificationSettingsEditScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ ├── NotificationSettingsEditScreen.swift │ │ │ │ │ └── NotificationSettingsEditScreenRoomCell.swift │ │ │ ├── NotificationSettingsScreen │ │ │ │ ├── NotificationSettingsScreenCoordinator.swift │ │ │ │ ├── NotificationSettingsScreenModels.swift │ │ │ │ ├── NotificationSettingsScreenViewModel.swift │ │ │ │ ├── NotificationSettingsScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── NotificationSettingsScreen.swift │ │ │ ├── SettingsScreen │ │ │ │ ├── SettingsScreenCoordinator.swift │ │ │ │ ├── SettingsScreenModels.swift │ │ │ │ ├── SettingsScreenViewModel.swift │ │ │ │ ├── SettingsScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ │ └── SettingsScreen.swift │ │ │ └── UserDetailsEditScreen │ │ │ │ ├── UserDetailsEditScreenCoordinator.swift │ │ │ │ ├── UserDetailsEditScreenModels.swift │ │ │ │ ├── UserDetailsEditScreenViewModel.swift │ │ │ │ ├── UserDetailsEditScreenViewModelProtocol.swift │ │ │ │ └── View │ │ │ │ └── UserDetailsEditScreen.swift │ │ ├── StartChatScreen │ │ │ ├── StartChatScreenCoordinator.swift │ │ │ ├── StartChatScreenModels.swift │ │ │ ├── StartChatScreenViewModel.swift │ │ │ ├── StartChatScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── JoinRoomByAddressView.swift │ │ │ │ ├── SendInviteConfirmationView.swift │ │ │ │ └── StartChatScreen.swift │ │ ├── ThreadTimelineScreen │ │ │ ├── ThreadTimelineScreenCoordinator.swift │ │ │ ├── ThreadTimelineScreenModels.swift │ │ │ ├── ThreadTimelineScreenViewModel.swift │ │ │ ├── ThreadTimelineScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── ThreadTimelineScreen.swift │ │ ├── Timeline │ │ │ ├── TimelineInteractionHandler.swift │ │ │ ├── TimelineModels.swift │ │ │ ├── TimelineTableViewController.swift │ │ │ ├── TimelineViewModel.swift │ │ │ ├── TimelineViewModelProtocol.swift │ │ │ └── View │ │ │ │ ├── ItemMenu │ │ │ │ ├── TimelineItemMacContextMenu.swift │ │ │ │ ├── TimelineItemMenu.swift │ │ │ │ ├── TimelineItemMenuAction.swift │ │ │ │ └── TimelineItemMenuActionProvider.swift │ │ │ │ ├── Polls │ │ │ │ ├── PollOptionView.swift │ │ │ │ └── PollView.swift │ │ │ │ ├── ReadReceipts │ │ │ │ ├── ReadReceiptCell.swift │ │ │ │ └── ReadReceiptsSummaryView.swift │ │ │ │ ├── Replies │ │ │ │ └── TimelineReplyView.swift │ │ │ │ ├── Style │ │ │ │ ├── LongPressWithFeedback.swift │ │ │ │ ├── SwipeToReplyView.swift │ │ │ │ ├── ThreadDecorator.swift │ │ │ │ ├── TimelineBubbleLayout.swift │ │ │ │ ├── TimelineItemAccessibilityModifier.swift │ │ │ │ ├── TimelineItemBubbleBackground.swift │ │ │ │ ├── TimelineItemBubbledStylerView.swift │ │ │ │ ├── TimelineItemSendInfoLabel.swift │ │ │ │ ├── TimelineStyle.swift │ │ │ │ └── TimelineStyler.swift │ │ │ │ ├── Supplementary │ │ │ │ ├── ReactionsSummaryView.swift │ │ │ │ ├── TimelineDeliveryStatusView.swift │ │ │ │ ├── TimelineItemStatusView.swift │ │ │ │ ├── TimelineReactionsView.swift │ │ │ │ └── TimelineReadReceiptsView.swift │ │ │ │ ├── Threads │ │ │ │ └── TimelineThreadSummaryView.swift │ │ │ │ ├── TimelineItemDebugView.swift │ │ │ │ ├── TimelineItemViews │ │ │ │ ├── AudioRoomTimelineView.swift │ │ │ │ ├── CallInviteRoomTimelineView.swift │ │ │ │ ├── CallNotificationRoomTimelineView.swift │ │ │ │ ├── CollapsibleRoomTimelineView.swift │ │ │ │ ├── EmoteRoomTimelineView.swift │ │ │ │ ├── EncryptedRoomTimelineView.swift │ │ │ │ ├── FileRoomTimelineView.swift │ │ │ │ ├── FormattedBodyText.swift │ │ │ │ ├── HighlightedTimelineItemModifier.swift │ │ │ │ ├── ImageRoomTimelineView.swift │ │ │ │ ├── LocationRoomTimelineView.swift │ │ │ │ ├── NoticeRoomTimelineView.swift │ │ │ │ ├── PaginationIndicatorRoomTimelineView.swift │ │ │ │ ├── PollRoomTimelineView.swift │ │ │ │ ├── ReadMarkerRoomTimelineView.swift │ │ │ │ ├── RedactedRoomTimelineView.swift │ │ │ │ ├── SeparatorRoomTimelineView.swift │ │ │ │ ├── StateRoomTimelineView.swift │ │ │ │ ├── StickerRoomTimelineView.swift │ │ │ │ ├── TextBasedRoomTimelineViewProtocol.swift │ │ │ │ ├── TextRoomTimelineView.swift │ │ │ │ ├── TimelineStartRoomTimelineView.swift │ │ │ │ ├── UnsupportedRoomTimelineView.swift │ │ │ │ ├── VideoRoomTimelineView.swift │ │ │ │ └── VoiceMessageRoomTimelineView.swift │ │ │ │ ├── TimelineSenderAvatarView.swift │ │ │ │ ├── TimelineView.swift │ │ │ │ ├── TypingIndicatorView.swift │ │ │ │ └── VoiceMessageRoomPlaybackView.swift │ │ └── UserProfileScreen │ │ │ ├── UserProfileScreenCoordinator.swift │ │ │ ├── UserProfileScreenModels.swift │ │ │ ├── UserProfileScreenViewModel.swift │ │ │ ├── UserProfileScreenViewModelProtocol.swift │ │ │ └── View │ │ │ └── UserProfileScreen.swift │ ├── Services │ │ ├── Analytics │ │ │ ├── AnalyticsClientProtocol.swift │ │ │ ├── AnalyticsConfiguration.swift │ │ │ ├── AnalyticsConsentState.swift │ │ │ ├── AnalyticsService.swift │ │ │ ├── Helpers │ │ │ │ ├── Analytics+SwiftUI.swift │ │ │ │ ├── JoinedRoomSize+MemberCount.swift │ │ │ │ └── RoomModerationRole.swift │ │ │ ├── PHGPostHogConfiguration.swift │ │ │ ├── PHGPostHogProtocol.swift │ │ │ ├── PostHogAnalyticsClient.swift │ │ │ ├── Signposter.swift │ │ │ └── UserPropertiesExt.swift │ │ ├── AppLock │ │ │ ├── AppLockService.swift │ │ │ ├── AppLockServiceProtocol.swift │ │ │ ├── AppLockTimer.swift │ │ │ └── LAContextMock.swift │ │ ├── Audio │ │ │ ├── AudioConverter.swift │ │ │ ├── AudioConverterProtocol.swift │ │ │ ├── AudioSessionProtocol.swift │ │ │ ├── Player │ │ │ │ ├── AudioPlayer.swift │ │ │ │ ├── AudioPlayerProtocol.swift │ │ │ │ └── AudioPlayerState.swift │ │ │ └── Recorder │ │ │ │ ├── AudioRecorder.swift │ │ │ │ ├── AudioRecorderProtocol.swift │ │ │ │ └── AudioRecorderState.swift │ │ ├── Authentication │ │ │ ├── AuthenticationClientBuilder.swift │ │ │ ├── AuthenticationClientBuilderFactory.swift │ │ │ ├── AuthenticationService.swift │ │ │ ├── AuthenticationServiceProtocol.swift │ │ │ └── OIDCConfigurationProxy.swift │ │ ├── BugReport │ │ │ ├── BugReportService.swift │ │ │ └── BugReportServiceProtocol.swift │ │ ├── Client │ │ │ ├── ClientProxy.swift │ │ │ └── ClientProxyProtocol.swift │ │ ├── ComposerDraft │ │ │ ├── ComposerDraftService.swift │ │ │ └── ComposerDraftServiceProtocol.swift │ │ ├── CreateRoom │ │ │ └── CreateRoomFlowParameters.swift │ │ ├── ElementCall │ │ │ ├── ElementCallConfiguration.swift │ │ │ ├── ElementCallService.swift │ │ │ ├── ElementCallServiceConstants.swift │ │ │ ├── ElementCallServiceProtocol.swift │ │ │ ├── ElementCallWidgetDriver.swift │ │ │ ├── ElementCallWidgetDriverProtocol.swift │ │ │ └── GenericCallLinkWidgetDriver.swift │ │ ├── Emojis │ │ │ ├── EmojiLoaderProtocol.swift │ │ │ ├── EmojiProvider.swift │ │ │ └── EmojiProviderProtocol.swift │ │ ├── Keychain │ │ │ ├── EncryptionKeyProvider.swift │ │ │ ├── EncryptionKeyProviderProtocol.swift │ │ │ ├── KeychainController.swift │ │ │ ├── KeychainControllerMock.swift │ │ │ └── KeychainControllerProtocol.swift │ │ ├── Media │ │ │ ├── MediaUploadingPreprocessor.swift │ │ │ └── Provider │ │ │ │ ├── MediaFileHandleProxy.swift │ │ │ │ ├── MediaLoader.swift │ │ │ │ ├── MediaLoaderProtocol.swift │ │ │ │ ├── MediaProvider.swift │ │ │ │ ├── MediaProviderProtocol.swift │ │ │ │ └── MediaSourceProxy.swift │ │ ├── MediaPlayer │ │ │ ├── MediaPlayerProvider.swift │ │ │ └── MediaPlayerProviderProtocol.swift │ │ ├── Notification │ │ │ ├── Manager │ │ │ │ ├── APNSPayload.swift │ │ │ │ ├── NotificationManager.swift │ │ │ │ ├── NotificationManagerProtocol.swift │ │ │ │ └── UserNotificationCenterProtocol.swift │ │ │ ├── NotificationConstants.swift │ │ │ └── Proxy │ │ │ │ ├── NotificationItemProxy.swift │ │ │ │ └── NotificationItemProxyProtocol.swift │ │ ├── NotificationSettings │ │ │ ├── NotificationSettingsChatType.swift │ │ │ ├── NotificationSettingsProxy.swift │ │ │ ├── NotificationSettingsProxyProtocol.swift │ │ │ ├── RoomNotificationModeProxy.swift │ │ │ ├── RoomNotificationSettingsProxy.swift │ │ │ └── RoomNotificationSettingsProxyProtocol.swift │ │ ├── Polls │ │ │ ├── PollInteractionHandler.swift │ │ │ └── PollInteractionHandlerProtocol.swift │ │ ├── QRCode │ │ │ ├── QRCodeLoginService.swift │ │ │ └── QRCodeLoginServiceProtocol.swift │ │ ├── Room │ │ │ ├── BannedRoomProxy.swift │ │ │ ├── InvitedRoomProxy.swift │ │ │ ├── JoinedRoomProxy.swift │ │ │ ├── KnockRequestProxy.swift │ │ │ ├── KnockRequestProxyProtocol.swift │ │ │ ├── KnockedRoomProxy.swift │ │ │ ├── RoomDetails.swift │ │ │ ├── RoomInfoProxy.swift │ │ │ ├── RoomMember │ │ │ │ ├── RoomMemberDetails.swift │ │ │ │ ├── RoomMemberProxy.swift │ │ │ │ └── RoomMemberProxyProtocol.swift │ │ │ ├── RoomMembershipDetails │ │ │ │ ├── RoomMembershipDetailsProxy.swift │ │ │ │ └── RoomMembershipDetailsProxyProtocol.swift │ │ │ ├── RoomPermissions.swift │ │ │ ├── RoomPreview │ │ │ │ ├── RoomPreviewProxy.swift │ │ │ │ └── RoomPreviewProxyProtocol.swift │ │ │ ├── RoomProxyProtocol.swift │ │ │ └── RoomSummary │ │ │ │ ├── RoomEventStringBuilder.swift │ │ │ │ ├── RoomMessageEventStringBuilder.swift │ │ │ │ ├── RoomSummary.swift │ │ │ │ ├── RoomSummaryProvider.swift │ │ │ │ └── RoomSummaryProviderProtocol.swift │ │ ├── RoomDirectorySearch │ │ │ ├── RoomDirectorySearchProxy.swift │ │ │ └── RoomDirectorySearchProxyProtocol.swift │ │ ├── SecureBackup │ │ │ ├── SecureBackupController.swift │ │ │ └── SecureBackupControllerProtocol.swift │ │ ├── Session │ │ │ ├── UserSession.swift │ │ │ └── UserSessionProtocol.swift │ │ ├── SessionVerification │ │ │ ├── SessionVerificationControllerProxy.swift │ │ │ └── SessionVerificationControllerProxyProtocol.swift │ │ ├── Timeline │ │ │ ├── Fixtures │ │ │ │ └── RoomTimelineItemFixtures.swift │ │ │ ├── GeoURI.swift │ │ │ ├── IntentionalMentions.swift │ │ │ ├── TimelineController │ │ │ │ ├── MockTimelineController.swift │ │ │ │ ├── TimelineController.swift │ │ │ │ ├── TimelineControllerFactory.swift │ │ │ │ ├── TimelineControllerFactoryProtocol.swift │ │ │ │ └── TimelineControllerProtocol.swift │ │ │ ├── TimelineItemContent │ │ │ │ ├── AggregratedReaction.swift │ │ │ │ ├── CustomStringConvertible.swift │ │ │ │ ├── EncryptionAuthenticity.swift │ │ │ │ ├── ReadReceipt.swift │ │ │ │ ├── RoomTimelineItemProperties.swift │ │ │ │ ├── TimelineEventContent.swift │ │ │ │ ├── TimelineItemReplyDetails.swift │ │ │ │ └── TimelineItemThreadSummary.swift │ │ │ ├── TimelineItemIdentifier.swift │ │ │ ├── TimelineItemProvider.swift │ │ │ ├── TimelineItemProviderProtocol.swift │ │ │ ├── TimelineItemProxy.swift │ │ │ ├── TimelineItemSender.swift │ │ │ ├── TimelineItems │ │ │ │ ├── DecorationTimelineItemProtocol.swift │ │ │ │ ├── EventBasedMessageTimelineItemProtocol.swift │ │ │ │ ├── EventBasedTimelineItemProtocol.swift │ │ │ │ ├── Items │ │ │ │ │ ├── Messages │ │ │ │ │ │ ├── AudioRoomTimelineItem.swift │ │ │ │ │ │ ├── AudioRoomTimelineItemContent.swift │ │ │ │ │ │ ├── EmoteRoomTimelineItem.swift │ │ │ │ │ │ ├── EmoteRoomTimelineItemContent.swift │ │ │ │ │ │ ├── FileRoomTimelineItem.swift │ │ │ │ │ │ ├── FileRoomTimelineItemContent.swift │ │ │ │ │ │ ├── ImageRoomTimelineItem.swift │ │ │ │ │ │ ├── ImageRoomTimelineItemContent.swift │ │ │ │ │ │ ├── LocationRoomTimelineItem.swift │ │ │ │ │ │ ├── LocationRoomTimelineItemContent.swift │ │ │ │ │ │ ├── NoticeRoomTimelineItem.swift │ │ │ │ │ │ ├── NoticeRoomTimelineItemContent.swift │ │ │ │ │ │ ├── TextRoomTimelineItem.swift │ │ │ │ │ │ ├── TextRoomTimelineItemContent.swift │ │ │ │ │ │ ├── VideoRoomTimelineItem.swift │ │ │ │ │ │ ├── VideoRoomTimelineItemContent.swift │ │ │ │ │ │ └── VoiceMessageRoomTimelineItem.swift │ │ │ │ │ ├── Other │ │ │ │ │ │ ├── CallInviteRoomTimelineItem.swift │ │ │ │ │ │ ├── CallNotificationRoomTimelineItem.swift │ │ │ │ │ │ ├── CollapsibleTimelineItem.swift │ │ │ │ │ │ ├── EncryptedRoomTimelineItem.swift │ │ │ │ │ │ ├── PollRoomTimelineItem.swift │ │ │ │ │ │ ├── RedactedRoomTimelineItem.swift │ │ │ │ │ │ ├── StateRoomTimelineItem.swift │ │ │ │ │ │ ├── StickerRoomTimelineItem.swift │ │ │ │ │ │ └── UnsupportedRoomTimelineItem.swift │ │ │ │ │ └── Virtual │ │ │ │ │ │ ├── PaginationIndicatorRoomTimelineItem.swift │ │ │ │ │ │ ├── ReadMarkerRoomTimelineItem.swift │ │ │ │ │ │ ├── SeparatorRoomTimelineItem.swift │ │ │ │ │ │ └── TimelineStartRoomTimelineItem.swift │ │ │ │ ├── RoomStateEventStringBuilder.swift │ │ │ │ ├── RoomTimelineItemFactory.swift │ │ │ │ ├── RoomTimelineItemFactoryProtocol.swift │ │ │ │ ├── RoomTimelineItemProtocol.swift │ │ │ │ ├── RoomTimelineItemView.swift │ │ │ │ ├── RoomTimelineItemViewState.swift │ │ │ │ └── TextBasedRoomTimelineItem.swift │ │ │ ├── TimelineProxy.swift │ │ │ └── TimelineProxyProtocol.swift │ │ ├── UserSession │ │ │ ├── RestorationToken.swift │ │ │ ├── SessionDirectories.swift │ │ │ ├── UserSessionStore.swift │ │ │ └── UserSessionStoreProtocol.swift │ │ ├── Users │ │ │ ├── UserDiscoverySection.swift │ │ │ ├── UserDiscoveryService.swift │ │ │ ├── UserDiscoveryServiceProtocol.swift │ │ │ ├── UserIdentityProxy.swift │ │ │ ├── UserIdentityProxyProtocol.swift │ │ │ └── UserProfileProxy.swift │ │ └── VoiceMessage │ │ │ ├── VoiceMessageCache.swift │ │ │ ├── VoiceMessageCacheProtocol.swift │ │ │ ├── VoiceMessageMediaManager.swift │ │ │ ├── VoiceMessageMediaManagerProtocol.swift │ │ │ ├── VoiceMessageRecorder.swift │ │ │ └── VoiceMessageRecorderProtocol.swift │ ├── ShareExtension │ │ └── ShareExtensionModels.swift │ ├── UITests │ │ ├── BlankFormCoordinator.swift │ │ ├── UITestsAppCoordinator.swift │ │ ├── UITestsNotificationCenter.swift │ │ ├── UITestsScreenIdentifier.swift │ │ └── UITestsSignalling.swift │ └── UnitTests │ │ └── UnitTestsAppCoordinator.swift └── SupportingFiles │ ├── ElementX-Bridging-Header.h │ ├── ElementX.entitlements │ ├── Info.plist │ ├── PrivacyInfo.xcprivacy │ ├── Settings.bundle │ ├── Acknowledgements.plist │ ├── Packages │ │ ├── DSWaveformImage.plist │ │ ├── DTCoreText.plist │ │ ├── DTFoundation.plist │ │ ├── DeviceKit.plist │ │ ├── GZIP.plist │ │ ├── KZFileWatchers.plist │ │ ├── KeychainAccess.plist │ │ ├── Kingfisher.plist │ │ ├── LRUCache.plist │ │ ├── LoremSwiftum.plist │ │ ├── SFSafeSymbols.plist │ │ ├── SwiftState.plist │ │ ├── Version.plist │ │ ├── emojibase-bindings.plist │ │ ├── maplibre-gl-native-distribution.plist │ │ ├── matrix-analytics-events.plist │ │ ├── matrix-rust-components-swift.plist │ │ ├── ogg-swift.plist │ │ ├── opus-swift.plist │ │ ├── posthog-ios.plist │ │ ├── sentry-cocoa.plist │ │ ├── swift-algorithms.plist │ │ ├── swift-collections.plist │ │ ├── swift-custom-dump.plist │ │ ├── swift-numerics.plist │ │ ├── swift-ogg.plist │ │ ├── swift-snapshot-testing.plist │ │ ├── swift-syntax.plist │ │ ├── swiftui-introspect.plist │ │ └── xctest-dynamic-overlay.plist │ ├── Root.plist │ ├── ar.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── de.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── en.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── es.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── fr.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── hi.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── it.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── ja.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── pl.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── pt.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── ru.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── tr.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── uk.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ ├── zh-hans.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ └── zh-hant.lproj │ │ ├── Acknowledgements.strings │ │ └── Root.strings │ └── target.yml ├── Gemfile ├── Gemfile.lock ├── IntegrationTests ├── Sources │ ├── Application.swift │ ├── Common.swift │ └── UserFlowTests.swift └── SupportingFiles │ ├── Info.plist │ ├── IntegrationTests.xctestplan │ └── target.yml ├── LICENSE ├── LICENSE-COMMERCIAL ├── NSE ├── Sources │ ├── DataProtectionManager.swift │ ├── NSEUserSession.swift │ ├── NotificationContentBuilder.swift │ ├── NotificationHandler.swift │ └── NotificationServiceExtension.swift └── SupportingFiles │ ├── Info.plist │ ├── NSE.entitlements │ ├── PrivacyInfo.xcprivacy │ └── target.yml ├── Package.resolved ├── Package.swift ├── PreviewTests ├── Sources │ ├── GeneratedPreviewTests.swift │ ├── PreviewTests.swift │ └── __Snapshots__ │ │ └── PreviewTests │ │ ├── advancedSettingsScreen.iPad-en-GB-0.png │ │ ├── advancedSettingsScreen.iPad-pseudo-0.png │ │ ├── advancedSettingsScreen.iPhone-16-en-GB-0.png │ │ ├── advancedSettingsScreen.iPhone-16-pseudo-0.png │ │ ├── analyticsPromptScreen.Default-iPad-en-GB.png │ │ ├── analyticsPromptScreen.Default-iPad-pseudo.png │ │ ├── analyticsPromptScreen.Default-iPhone-16-en-GB.png │ │ ├── analyticsPromptScreen.Default-iPhone-16-pseudo.png │ │ ├── analyticsPromptScreen.No-terms-iPad-en-GB.png │ │ ├── analyticsPromptScreen.No-terms-iPad-pseudo.png │ │ ├── analyticsPromptScreen.No-terms-iPhone-16-en-GB.png │ │ ├── analyticsPromptScreen.No-terms-iPhone-16-pseudo.png │ │ ├── analyticsSettingsScreen.iPad-en-GB-0.png │ │ ├── analyticsSettingsScreen.iPad-pseudo-0.png │ │ ├── analyticsSettingsScreen.iPhone-16-en-GB-0.png │ │ ├── analyticsSettingsScreen.iPhone-16-pseudo-0.png │ │ ├── appLockScreen.iPad-en-GB-0.png │ │ ├── appLockScreen.iPad-pseudo-0.png │ │ ├── appLockScreen.iPhone-16-en-GB-0.png │ │ ├── appLockScreen.iPhone-16-pseudo-0.png │ │ ├── appLockSetupBiometricsScreen.Face-ID-iPad-en-GB.png │ │ ├── appLockSetupBiometricsScreen.Face-ID-iPad-pseudo.png │ │ ├── appLockSetupBiometricsScreen.Face-ID-iPhone-16-en-GB.png │ │ ├── appLockSetupBiometricsScreen.Face-ID-iPhone-16-pseudo.png │ │ ├── appLockSetupBiometricsScreen.Touch-ID-iPad-en-GB.png │ │ ├── appLockSetupBiometricsScreen.Touch-ID-iPad-pseudo.png │ │ ├── appLockSetupBiometricsScreen.Touch-ID-iPhone-16-en-GB.png │ │ ├── appLockSetupBiometricsScreen.Touch-ID-iPhone-16-pseudo.png │ │ ├── appLockSetupPINScreen.Confirm-iPad-en-GB.png │ │ ├── appLockSetupPINScreen.Confirm-iPad-pseudo.png │ │ ├── appLockSetupPINScreen.Confirm-iPhone-16-en-GB.png │ │ ├── appLockSetupPINScreen.Confirm-iPhone-16-pseudo.png │ │ ├── appLockSetupPINScreen.Create-iPad-en-GB.png │ │ ├── appLockSetupPINScreen.Create-iPad-pseudo.png │ │ ├── appLockSetupPINScreen.Create-iPhone-16-en-GB.png │ │ ├── appLockSetupPINScreen.Create-iPhone-16-pseudo.png │ │ ├── appLockSetupPINScreen.Unlock-Failed-iPad-en-GB.png │ │ ├── appLockSetupPINScreen.Unlock-Failed-iPad-pseudo.png │ │ ├── appLockSetupPINScreen.Unlock-Failed-iPhone-16-en-GB.png │ │ ├── appLockSetupPINScreen.Unlock-Failed-iPhone-16-pseudo.png │ │ ├── appLockSetupPINScreen.Unlock-iPad-en-GB.png │ │ ├── appLockSetupPINScreen.Unlock-iPad-pseudo.png │ │ ├── appLockSetupPINScreen.Unlock-iPhone-16-en-GB.png │ │ ├── appLockSetupPINScreen.Unlock-iPhone-16-pseudo.png │ │ ├── appLockSetupSettingsScreen.Face-ID-iPad-en-GB.png │ │ ├── appLockSetupSettingsScreen.Face-ID-iPad-pseudo.png │ │ ├── appLockSetupSettingsScreen.Face-ID-iPhone-16-en-GB.png │ │ ├── appLockSetupSettingsScreen.Face-ID-iPhone-16-pseudo.png │ │ ├── appLockSetupSettingsScreen.PIN-only-iPad-en-GB.png │ │ ├── appLockSetupSettingsScreen.PIN-only-iPad-pseudo.png │ │ ├── appLockSetupSettingsScreen.PIN-only-iPhone-16-en-GB.png │ │ ├── appLockSetupSettingsScreen.PIN-only-iPhone-16-pseudo.png │ │ ├── appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-en-GB.png │ │ ├── appLockSetupSettingsScreen.Touch-ID-Mandatory-iPad-pseudo.png │ │ ├── appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-en-GB.png │ │ ├── appLockSetupSettingsScreen.Touch-ID-Mandatory-iPhone-16-pseudo.png │ │ ├── audioMediaEventsTimelineView.iPad-en-GB-0.png │ │ ├── audioMediaEventsTimelineView.iPad-pseudo-0.png │ │ ├── audioMediaEventsTimelineView.iPhone-16-en-GB-0.png │ │ ├── audioMediaEventsTimelineView.iPhone-16-pseudo-0.png │ │ ├── audioRoomTimelineView.iPad-en-GB-0.png │ │ ├── audioRoomTimelineView.iPad-pseudo-0.png │ │ ├── audioRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── audioRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── authenticationStartScreen.Bug-report-disabled-iPad-en-GB.png │ │ ├── authenticationStartScreen.Bug-report-disabled-iPad-pseudo.png │ │ ├── authenticationStartScreen.Bug-report-disabled-iPhone-16-en-GB.png │ │ ├── authenticationStartScreen.Bug-report-disabled-iPhone-16-pseudo.png │ │ ├── authenticationStartScreen.Default-iPad-en-GB.png │ │ ├── authenticationStartScreen.Default-iPad-pseudo.png │ │ ├── authenticationStartScreen.Default-iPhone-16-en-GB.png │ │ ├── authenticationStartScreen.Default-iPhone-16-pseudo.png │ │ ├── authenticationStartScreen.Provisioned-iPad-en-GB.png │ │ ├── authenticationStartScreen.Provisioned-iPad-pseudo.png │ │ ├── authenticationStartScreen.Provisioned-iPhone-16-en-GB.png │ │ ├── authenticationStartScreen.Provisioned-iPhone-16-pseudo.png │ │ ├── avatarHeaderView.DM-iPad-en-GB.png │ │ ├── avatarHeaderView.DM-iPad-pseudo.png │ │ ├── avatarHeaderView.DM-iPhone-16-en-GB.png │ │ ├── avatarHeaderView.DM-iPhone-16-pseudo.png │ │ ├── avatarHeaderView.Members-iPad-en-GB.png │ │ ├── avatarHeaderView.Members-iPad-pseudo.png │ │ ├── avatarHeaderView.Members-iPhone-16-en-GB.png │ │ ├── avatarHeaderView.Members-iPhone-16-pseudo.png │ │ ├── avatarHeaderView.Room-iPad-en-GB.png │ │ ├── avatarHeaderView.Room-iPad-pseudo.png │ │ ├── avatarHeaderView.Room-iPhone-16-en-GB.png │ │ ├── avatarHeaderView.Room-iPhone-16-pseudo.png │ │ ├── badgeLabel.iPad-en-GB-0.png │ │ ├── badgeLabel.iPad-pseudo-0.png │ │ ├── badgeLabel.iPhone-16-en-GB-0.png │ │ ├── badgeLabel.iPhone-16-pseudo-0.png │ │ ├── bigIcon.iPad-en-GB-0.png │ │ ├── bigIcon.iPad-pseudo-0.png │ │ ├── bigIcon.iPhone-16-en-GB-0.png │ │ ├── bigIcon.iPhone-16-pseudo-0.png │ │ ├── blockedUsersScreen.iPad-en-GB-0.png │ │ ├── blockedUsersScreen.iPad-pseudo-0.png │ │ ├── blockedUsersScreen.iPhone-16-en-GB-0.png │ │ ├── blockedUsersScreen.iPhone-16-pseudo-0.png │ │ ├── bugReportScreen.With-Screenshot-iPad-en-GB.png │ │ ├── bugReportScreen.With-Screenshot-iPad-pseudo.png │ │ ├── bugReportScreen.With-Screenshot-iPhone-16-en-GB.png │ │ ├── bugReportScreen.With-Screenshot-iPhone-16-pseudo.png │ │ ├── bugReportScreen.Without-Screenshot-iPad-en-GB.png │ │ ├── bugReportScreen.Without-Screenshot-iPad-pseudo.png │ │ ├── bugReportScreen.Without-Screenshot-iPhone-16-en-GB.png │ │ ├── bugReportScreen.Without-Screenshot-iPhone-16-pseudo.png │ │ ├── callInviteRoomTimelineView.iPad-en-GB-0.png │ │ ├── callInviteRoomTimelineView.iPad-pseudo-0.png │ │ ├── callInviteRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── callInviteRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── callNotificationRoomTimelineView.iPad-en-GB-0.png │ │ ├── callNotificationRoomTimelineView.iPad-pseudo-0.png │ │ ├── callNotificationRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── callNotificationRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── collapsibleRoomTimelineView.iPad-en-GB-0.png │ │ ├── collapsibleRoomTimelineView.iPad-pseudo-0.png │ │ ├── collapsibleRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── collapsibleRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── completionSuggestion.iPad-en-GB-0.png │ │ ├── completionSuggestion.iPad-en-GB-1.png │ │ ├── completionSuggestion.iPad-pseudo-0.png │ │ ├── completionSuggestion.iPad-pseudo-1.png │ │ ├── completionSuggestion.iPhone-16-en-GB-0.png │ │ ├── completionSuggestion.iPhone-16-en-GB-1.png │ │ ├── completionSuggestion.iPhone-16-pseudo-0.png │ │ ├── completionSuggestion.iPhone-16-pseudo-1.png │ │ ├── composerToolbar.Disabled-iPad-en-GB.png │ │ ├── composerToolbar.Disabled-iPad-pseudo.png │ │ ├── composerToolbar.Disabled-iPhone-16-en-GB.png │ │ ├── composerToolbar.Disabled-iPhone-16-pseudo.png │ │ ├── composerToolbar.Reply-iPad-en-GB.png │ │ ├── composerToolbar.Reply-iPad-pseudo.png │ │ ├── composerToolbar.Reply-iPhone-16-en-GB.png │ │ ├── composerToolbar.Reply-iPhone-16-pseudo.png │ │ ├── composerToolbar.Voice-Message-iPad-en-GB.png │ │ ├── composerToolbar.Voice-Message-iPad-pseudo.png │ │ ├── composerToolbar.Voice-Message-iPhone-16-en-GB.png │ │ ├── composerToolbar.Voice-Message-iPhone-16-pseudo.png │ │ ├── composerToolbar.With-Suggestions-iPad-en-GB.png │ │ ├── composerToolbar.With-Suggestions-iPad-pseudo.png │ │ ├── composerToolbar.With-Suggestions-iPhone-16-en-GB.png │ │ ├── composerToolbar.With-Suggestions-iPhone-16-pseudo.png │ │ ├── composerToolbar.iPad-en-GB-0.png │ │ ├── composerToolbar.iPad-pseudo-0.png │ │ ├── composerToolbar.iPhone-16-en-GB-0.png │ │ ├── composerToolbar.iPhone-16-pseudo-0.png │ │ ├── createRoom.Create-Public-Room-existing-alias-iPad-en-GB.png │ │ ├── createRoom.Create-Public-Room-existing-alias-iPad-pseudo.png │ │ ├── createRoom.Create-Public-Room-existing-alias-iPhone-16-en-GB.png │ │ ├── createRoom.Create-Public-Room-existing-alias-iPhone-16-pseudo.png │ │ ├── createRoom.Create-Public-Room-iPad-en-GB.png │ │ ├── createRoom.Create-Public-Room-iPad-pseudo.png │ │ ├── createRoom.Create-Public-Room-iPhone-16-en-GB.png │ │ ├── createRoom.Create-Public-Room-iPhone-16-pseudo.png │ │ ├── createRoom.Create-Public-Room-invalid-alias-iPad-en-GB.png │ │ ├── createRoom.Create-Public-Room-invalid-alias-iPad-pseudo.png │ │ ├── createRoom.Create-Public-Room-invalid-alias-iPhone-16-en-GB.png │ │ ├── createRoom.Create-Public-Room-invalid-alias-iPhone-16-pseudo.png │ │ ├── createRoom.Create-Room-iPad-en-GB.png │ │ ├── createRoom.Create-Room-iPad-pseudo.png │ │ ├── createRoom.Create-Room-iPhone-16-en-GB.png │ │ ├── createRoom.Create-Room-iPhone-16-pseudo.png │ │ ├── createRoom.Create-Room-without-users-iPad-en-GB.png │ │ ├── createRoom.Create-Room-without-users-iPad-pseudo.png │ │ ├── createRoom.Create-Room-without-users-iPhone-16-en-GB.png │ │ ├── createRoom.Create-Room-without-users-iPhone-16-pseudo.png │ │ ├── deactivateAccountScreen.iPad-en-GB-0.png │ │ ├── deactivateAccountScreen.iPad-pseudo-0.png │ │ ├── deactivateAccountScreen.iPhone-16-en-GB-0.png │ │ ├── deactivateAccountScreen.iPhone-16-pseudo-0.png │ │ ├── declineAndBlockScreen.Default-iPad-en-GB.png │ │ ├── declineAndBlockScreen.Default-iPad-pseudo.png │ │ ├── declineAndBlockScreen.Default-iPhone-16-en-GB.png │ │ ├── declineAndBlockScreen.Default-iPhone-16-pseudo.png │ │ ├── declineAndBlockScreen.Report-room-selected-iPad-en-GB.png │ │ ├── declineAndBlockScreen.Report-room-selected-iPad-pseudo.png │ │ ├── declineAndBlockScreen.Report-room-selected-iPhone-16-en-GB.png │ │ ├── declineAndBlockScreen.Report-room-selected-iPhone-16-pseudo.png │ │ ├── editRoomAddressScreen.Already-existing-iPad-en-GB.png │ │ ├── editRoomAddressScreen.Already-existing-iPad-pseudo.png │ │ ├── editRoomAddressScreen.Already-existing-iPhone-16-en-GB.png │ │ ├── editRoomAddressScreen.Already-existing-iPhone-16-pseudo.png │ │ ├── editRoomAddressScreen.Invalid-symbols-iPad-en-GB.png │ │ ├── editRoomAddressScreen.Invalid-symbols-iPad-pseudo.png │ │ ├── editRoomAddressScreen.Invalid-symbols-iPhone-16-en-GB.png │ │ ├── editRoomAddressScreen.Invalid-symbols-iPhone-16-pseudo.png │ │ ├── editRoomAddressScreen.No-alias-iPad-en-GB.png │ │ ├── editRoomAddressScreen.No-alias-iPad-pseudo.png │ │ ├── editRoomAddressScreen.No-alias-iPhone-16-en-GB.png │ │ ├── editRoomAddressScreen.No-alias-iPhone-16-pseudo.png │ │ ├── editRoomAddressScreen.With-alias-iPad-en-GB.png │ │ ├── editRoomAddressScreen.With-alias-iPad-pseudo.png │ │ ├── editRoomAddressScreen.With-alias-iPhone-16-en-GB.png │ │ ├── editRoomAddressScreen.With-alias-iPhone-16-pseudo.png │ │ ├── elementTextFieldStyle.iPad-en-GB-0.png │ │ ├── elementTextFieldStyle.iPad-pseudo-0.png │ │ ├── elementTextFieldStyle.iPhone-16-en-GB-0.png │ │ ├── elementTextFieldStyle.iPhone-16-pseudo-0.png │ │ ├── emojiPickerScreen.Screen-iPad-en-GB.png │ │ ├── emojiPickerScreen.Screen-iPad-pseudo.png │ │ ├── emojiPickerScreen.Screen-iPhone-16-en-GB.png │ │ ├── emojiPickerScreen.Screen-iPhone-16-pseudo.png │ │ ├── emojiPickerScreenHeaderView.iPad-en-GB-0.png │ │ ├── emojiPickerScreenHeaderView.iPad-pseudo-0.png │ │ ├── emojiPickerScreenHeaderView.iPhone-16-en-GB-0.png │ │ ├── emojiPickerScreenHeaderView.iPhone-16-pseudo-0.png │ │ ├── emoteRoomTimelineView.iPad-en-GB-0.png │ │ ├── emoteRoomTimelineView.iPad-pseudo-0.png │ │ ├── emoteRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── emoteRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── encryptedRoomTimelineView.iPad-en-GB-0.png │ │ ├── encryptedRoomTimelineView.iPad-pseudo-0.png │ │ ├── encryptedRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── encryptedRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── encryptionResetPasswordScreen.iPad-en-GB-0.png │ │ ├── encryptionResetPasswordScreen.iPad-pseudo-0.png │ │ ├── encryptionResetPasswordScreen.iPhone-16-en-GB-0.png │ │ ├── encryptionResetPasswordScreen.iPhone-16-pseudo-0.png │ │ ├── encryptionResetScreen.iPad-en-GB-0.png │ │ ├── encryptionResetScreen.iPad-pseudo-0.png │ │ ├── encryptionResetScreen.iPhone-16-en-GB-0.png │ │ ├── encryptionResetScreen.iPhone-16-pseudo-0.png │ │ ├── estimatedWaveformView.iPad-en-GB-0.png │ │ ├── estimatedWaveformView.iPad-pseudo-0.png │ │ ├── estimatedWaveformView.iPhone-16-en-GB-0.png │ │ ├── estimatedWaveformView.iPhone-16-pseudo-0.png │ │ ├── fileMediaEventsTimelineView.iPad-en-GB-0.png │ │ ├── fileMediaEventsTimelineView.iPad-pseudo-0.png │ │ ├── fileMediaEventsTimelineView.iPhone-16-en-GB-0.png │ │ ├── fileMediaEventsTimelineView.iPhone-16-pseudo-0.png │ │ ├── fileRoomTimelineView.iPad-en-GB-0.png │ │ ├── fileRoomTimelineView.iPad-pseudo-0.png │ │ ├── fileRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── fileRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── formButtonStyles.iPad-en-GB-0.png │ │ ├── formButtonStyles.iPad-pseudo-0.png │ │ ├── formButtonStyles.iPhone-16-en-GB-0.png │ │ ├── formButtonStyles.iPhone-16-pseudo-0.png │ │ ├── formattedBodyText.iPad-en-GB-0.png │ │ ├── formattedBodyText.iPad-pseudo-0.png │ │ ├── formattedBodyText.iPhone-16-en-GB-0.png │ │ ├── formattedBodyText.iPhone-16-pseudo-0.png │ │ ├── formattingToolbar.iPad-en-GB-0.png │ │ ├── formattingToolbar.iPad-pseudo-0.png │ │ ├── formattingToolbar.iPhone-16-en-GB-0.png │ │ ├── formattingToolbar.iPhone-16-pseudo-0.png │ │ ├── fullscreenDialog.Gradient-iPad-en-GB.png │ │ ├── fullscreenDialog.Gradient-iPad-pseudo.png │ │ ├── fullscreenDialog.Gradient-iPhone-16-en-GB.png │ │ ├── fullscreenDialog.Gradient-iPhone-16-pseudo.png │ │ ├── fullscreenDialog.Plain-iPad-en-GB.png │ │ ├── fullscreenDialog.Plain-iPad-pseudo.png │ │ ├── fullscreenDialog.Plain-iPhone-16-en-GB.png │ │ ├── fullscreenDialog.Plain-iPhone-16-pseudo.png │ │ ├── globalSearchScreen.iPad-en-GB-0.png │ │ ├── globalSearchScreen.iPad-pseudo-0.png │ │ ├── globalSearchScreen.iPhone-16-en-GB-0.png │ │ ├── globalSearchScreen.iPhone-16-pseudo-0.png │ │ ├── globalSearchScreenListRow.iPad-en-GB-0.png │ │ ├── globalSearchScreenListRow.iPad-pseudo-0.png │ │ ├── globalSearchScreenListRow.iPhone-16-en-GB-0.png │ │ ├── globalSearchScreenListRow.iPhone-16-pseudo-0.png │ │ ├── highlightedTimelineItemModifier.Layout-iPad-en-GB.png │ │ ├── highlightedTimelineItemModifier.Layout-iPad-pseudo.png │ │ ├── highlightedTimelineItemModifier.Layout-iPhone-16-en-GB.png │ │ ├── highlightedTimelineItemModifier.Layout-iPhone-16-pseudo.png │ │ ├── homeScreen.Empty-iPad-en-GB.png │ │ ├── homeScreen.Empty-iPad-pseudo.png │ │ ├── homeScreen.Empty-iPhone-16-en-GB.png │ │ ├── homeScreen.Empty-iPhone-16-pseudo.png │ │ ├── homeScreen.Loaded-iPad-en-GB.png │ │ ├── homeScreen.Loaded-iPad-pseudo.png │ │ ├── homeScreen.Loaded-iPhone-16-en-GB.png │ │ ├── homeScreen.Loaded-iPhone-16-pseudo.png │ │ ├── homeScreen.Loading-iPad-en-GB.png │ │ ├── homeScreen.Loading-iPad-pseudo.png │ │ ├── homeScreen.Loading-iPhone-16-en-GB.png │ │ ├── homeScreen.Loading-iPhone-16-pseudo.png │ │ ├── homeScreenEmptyStateView.Constrained-layout-iPad-en-GB.png │ │ ├── homeScreenEmptyStateView.Constrained-layout-iPad-pseudo.png │ │ ├── homeScreenEmptyStateView.Constrained-layout-iPhone-16-en-GB.png │ │ ├── homeScreenEmptyStateView.Constrained-layout-iPhone-16-pseudo.png │ │ ├── homeScreenEmptyStateView.Normal-Layout-iPad-en-GB.png │ │ ├── homeScreenEmptyStateView.Normal-Layout-iPad-pseudo.png │ │ ├── homeScreenEmptyStateView.Normal-Layout-iPhone-16-en-GB.png │ │ ├── homeScreenEmptyStateView.Normal-Layout-iPhone-16-pseudo.png │ │ ├── homeScreenEmptyStateView.View-iPad-en-GB.png │ │ ├── homeScreenEmptyStateView.View-iPad-pseudo.png │ │ ├── homeScreenEmptyStateView.View-iPhone-16-en-GB.png │ │ ├── homeScreenEmptyStateView.View-iPhone-16-pseudo.png │ │ ├── homeScreenInviteCell.iPad-en-GB-0.png │ │ ├── homeScreenInviteCell.iPad-pseudo-0.png │ │ ├── homeScreenInviteCell.iPhone-16-en-GB-0.png │ │ ├── homeScreenInviteCell.iPhone-16-pseudo-0.png │ │ ├── homeScreenKnockedCell.iPad-en-GB-0.png │ │ ├── homeScreenKnockedCell.iPad-pseudo-0.png │ │ ├── homeScreenKnockedCell.iPhone-16-en-GB-0.png │ │ ├── homeScreenKnockedCell.iPhone-16-pseudo-0.png │ │ ├── homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPad-en-GB.png │ │ ├── homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPad-pseudo.png │ │ ├── homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-16-en-GB.png │ │ ├── homeScreenRecoveryKeyConfirmationBanner.Out-of-sync-iPhone-16-pseudo.png │ │ ├── homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-en-GB.png │ │ ├── homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPad-pseudo.png │ │ ├── homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-en-GB.png │ │ ├── homeScreenRecoveryKeyConfirmationBanner.Set-up-recovery-iPhone-16-pseudo.png │ │ ├── homeScreenRoomCell.Generic-iPad-en-GB.png │ │ ├── homeScreenRoomCell.Generic-iPad-pseudo.png │ │ ├── homeScreenRoomCell.Generic-iPhone-16-en-GB.png │ │ ├── homeScreenRoomCell.Generic-iPhone-16-pseudo.png │ │ ├── homeScreenRoomCell.Notifications-State-iPad-en-GB.png │ │ ├── homeScreenRoomCell.Notifications-State-iPad-pseudo.png │ │ ├── homeScreenRoomCell.Notifications-State-iPhone-16-en-GB.png │ │ ├── homeScreenRoomCell.Notifications-State-iPhone-16-pseudo.png │ │ ├── identityConfirmationScreen.iPad-en-GB-0.png │ │ ├── identityConfirmationScreen.iPad-pseudo-0.png │ │ ├── identityConfirmationScreen.iPhone-16-en-GB-0.png │ │ ├── identityConfirmationScreen.iPhone-16-pseudo-0.png │ │ ├── identityConfirmedScreen.iPad-en-GB-0.png │ │ ├── identityConfirmedScreen.iPad-pseudo-0.png │ │ ├── identityConfirmedScreen.iPhone-16-en-GB-0.png │ │ ├── identityConfirmedScreen.iPhone-16-pseudo-0.png │ │ ├── imageMediaEventsTimelineView.iPad-en-GB-0.png │ │ ├── imageMediaEventsTimelineView.iPad-pseudo-0.png │ │ ├── imageMediaEventsTimelineView.iPhone-16-en-GB-0.png │ │ ├── imageMediaEventsTimelineView.iPhone-16-pseudo-0.png │ │ ├── imageRoomTimelineView.iPad-en-GB-0.png │ │ ├── imageRoomTimelineView.iPad-pseudo-0.png │ │ ├── imageRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── imageRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── inviteUsersScreen.iPad-en-GB-0.png │ │ ├── inviteUsersScreen.iPad-pseudo-0.png │ │ ├── inviteUsersScreen.iPhone-16-en-GB-0.png │ │ ├── inviteUsersScreen.iPhone-16-pseudo-0.png │ │ ├── inviteUsersScreenSelectedItem.iPad-en-GB-0.png │ │ ├── inviteUsersScreenSelectedItem.iPad-pseudo-0.png │ │ ├── inviteUsersScreenSelectedItem.iPhone-16-en-GB-0.png │ │ ├── inviteUsersScreenSelectedItem.iPhone-16-pseudo-0.png │ │ ├── joinRoomByAddressView.iPad-en-GB-0.png │ │ ├── joinRoomByAddressView.iPad-pseudo-0.png │ │ ├── joinRoomByAddressView.iPhone-16-en-GB-0.png │ │ ├── joinRoomByAddressView.iPhone-16-pseudo-0.png │ │ ├── joinRoomScreen.Banned-iPad-en-GB.png │ │ ├── joinRoomScreen.Banned-iPad-pseudo.png │ │ ├── joinRoomScreen.Banned-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.Banned-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.Forbidden-iPad-en-GB.png │ │ ├── joinRoomScreen.Forbidden-iPad-pseudo.png │ │ ├── joinRoomScreen.Forbidden-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.Forbidden-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.InviteRequired-iPad-en-GB.png │ │ ├── joinRoomScreen.InviteRequired-iPad-pseudo.png │ │ ├── joinRoomScreen.InviteRequired-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.InviteRequired-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.Invited-iPad-en-GB.png │ │ ├── joinRoomScreen.Invited-iPad-pseudo.png │ │ ├── joinRoomScreen.Invited-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.Invited-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.InvitedDM-iPad-en-GB.png │ │ ├── joinRoomScreen.InvitedDM-iPad-pseudo.png │ │ ├── joinRoomScreen.InvitedDM-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.InvitedDM-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.InvitedWithHiddenAvatars-iPad-en-GB.png │ │ ├── joinRoomScreen.InvitedWithHiddenAvatars-iPad-pseudo.png │ │ ├── joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.InvitedWithHiddenAvatars-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.Joinable-iPad-en-GB.png │ │ ├── joinRoomScreen.Joinable-iPad-pseudo.png │ │ ├── joinRoomScreen.Joinable-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.Joinable-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.Knockable-iPad-en-GB.png │ │ ├── joinRoomScreen.Knockable-iPad-pseudo.png │ │ ├── joinRoomScreen.Knockable-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.Knockable-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.Knocked-iPad-en-GB.png │ │ ├── joinRoomScreen.Knocked-iPad-pseudo.png │ │ ├── joinRoomScreen.Knocked-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.Knocked-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.Restricted-iPad-en-GB.png │ │ ├── joinRoomScreen.Restricted-iPad-pseudo.png │ │ ├── joinRoomScreen.Restricted-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.Restricted-iPhone-16-pseudo.png │ │ ├── joinRoomScreen.Unknown-iPad-en-GB.png │ │ ├── joinRoomScreen.Unknown-iPad-pseudo.png │ │ ├── joinRoomScreen.Unknown-iPhone-16-en-GB.png │ │ ├── joinRoomScreen.Unknown-iPhone-16-pseudo.png │ │ ├── knockRequestCell.Long-reason-iPad-en-GB.png │ │ ├── knockRequestCell.Long-reason-iPad-pseudo.png │ │ ├── knockRequestCell.Long-reason-iPhone-16-en-GB.png │ │ ├── knockRequestCell.Long-reason-iPhone-16-pseudo.png │ │ ├── knockRequestCell.No-name-iPad-en-GB.png │ │ ├── knockRequestCell.No-name-iPad-pseudo.png │ │ ├── knockRequestCell.No-name-iPhone-16-en-GB.png │ │ ├── knockRequestCell.No-name-iPhone-16-pseudo.png │ │ ├── knockRequestCell.No-reason-iPad-en-GB.png │ │ ├── knockRequestCell.No-reason-iPad-pseudo.png │ │ ├── knockRequestCell.No-reason-iPhone-16-en-GB.png │ │ ├── knockRequestCell.No-reason-iPhone-16-pseudo.png │ │ ├── knockRequestCell.Short-reason-iPad-en-GB.png │ │ ├── knockRequestCell.Short-reason-iPad-pseudo.png │ │ ├── knockRequestCell.Short-reason-iPhone-16-en-GB.png │ │ ├── knockRequestCell.Short-reason-iPhone-16-pseudo.png │ │ ├── knockRequestsBannerView.Multiple-Requests-iPad-en-GB.png │ │ ├── knockRequestsBannerView.Multiple-Requests-iPad-pseudo.png │ │ ├── knockRequestsBannerView.Multiple-Requests-iPhone-16-en-GB.png │ │ ├── knockRequestsBannerView.Multiple-Requests-iPhone-16-pseudo.png │ │ ├── knockRequestsBannerView.Single-Request-No-Display-Name-iPad-en-GB.png │ │ ├── knockRequestsBannerView.Single-Request-No-Display-Name-iPad-pseudo.png │ │ ├── knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-16-en-GB.png │ │ ├── knockRequestsBannerView.Single-Request-No-Display-Name-iPhone-16-pseudo.png │ │ ├── knockRequestsBannerView.Single-Request-iPad-en-GB.png │ │ ├── knockRequestsBannerView.Single-Request-iPad-pseudo.png │ │ ├── knockRequestsBannerView.Single-Request-iPhone-16-en-GB.png │ │ ├── knockRequestsBannerView.Single-Request-iPhone-16-pseudo.png │ │ ├── knockRequestsBannerView.Single-Request-no-accept-action-iPad-en-GB.png │ │ ├── knockRequestsBannerView.Single-Request-no-accept-action-iPad-pseudo.png │ │ ├── knockRequestsBannerView.Single-Request-no-accept-action-iPhone-16-en-GB.png │ │ ├── knockRequestsBannerView.Single-Request-no-accept-action-iPhone-16-pseudo.png │ │ ├── knockRequestsBannerView.Single-Request-with-reason-iPad-en-GB.png │ │ ├── knockRequestsBannerView.Single-Request-with-reason-iPad-pseudo.png │ │ ├── knockRequestsBannerView.Single-Request-with-reason-iPhone-16-en-GB.png │ │ ├── knockRequestsBannerView.Single-Request-with-reason-iPhone-16-pseudo.png │ │ ├── knockRequestsListEmptyStateView.iPad-en-GB-0.png │ │ ├── knockRequestsListEmptyStateView.iPad-pseudo-0.png │ │ ├── knockRequestsListEmptyStateView.iPhone-16-en-GB-0.png │ │ ├── knockRequestsListEmptyStateView.iPhone-16-pseudo-0.png │ │ ├── knockRequestsListScreen.Empty-state-iPad-en-GB.png │ │ ├── knockRequestsListScreen.Empty-state-iPad-pseudo.png │ │ ├── knockRequestsListScreen.Empty-state-iPhone-16-en-GB.png │ │ ├── knockRequestsListScreen.Empty-state-iPhone-16-pseudo.png │ │ ├── knockRequestsListScreen.Loading-state-iPad-en-GB.png │ │ ├── knockRequestsListScreen.Loading-state-iPad-pseudo.png │ │ ├── knockRequestsListScreen.Loading-state-iPhone-16-en-GB.png │ │ ├── knockRequestsListScreen.Loading-state-iPhone-16-pseudo.png │ │ ├── knockRequestsListScreen.Single-Request-iPad-en-GB.png │ │ ├── knockRequestsListScreen.Single-Request-iPad-pseudo.png │ │ ├── knockRequestsListScreen.Single-Request-iPhone-16-en-GB.png │ │ ├── knockRequestsListScreen.Single-Request-iPhone-16-pseudo.png │ │ ├── knockRequestsListScreen.iPad-en-GB-0.png │ │ ├── knockRequestsListScreen.iPad-pseudo-0.png │ │ ├── knockRequestsListScreen.iPhone-16-en-GB-0.png │ │ ├── knockRequestsListScreen.iPhone-16-pseudo-0.png │ │ ├── legalInformationScreen.iPad-en-GB-0.png │ │ ├── legalInformationScreen.iPad-pseudo-0.png │ │ ├── legalInformationScreen.iPhone-16-en-GB-0.png │ │ ├── legalInformationScreen.iPhone-16-pseudo-0.png │ │ ├── loadableImage.iPad-en-GB-0.png │ │ ├── loadableImage.iPad-pseudo-0.png │ │ ├── loadableImage.iPhone-16-en-GB-0.png │ │ ├── loadableImage.iPhone-16-pseudo-0.png │ │ ├── locationMarkerView.iPad-en-GB-0.png │ │ ├── locationMarkerView.iPad-pseudo-0.png │ │ ├── locationMarkerView.iPhone-16-en-GB-0.png │ │ ├── locationMarkerView.iPhone-16-pseudo-0.png │ │ ├── locationRoomTimelineView.Bubbles-iPad-en-GB.png │ │ ├── locationRoomTimelineView.Bubbles-iPad-pseudo.png │ │ ├── locationRoomTimelineView.Bubbles-iPhone-16-en-GB.png │ │ ├── locationRoomTimelineView.Bubbles-iPhone-16-pseudo.png │ │ ├── loginScreen.Credentials-Entered-iPad-en-GB.png │ │ ├── loginScreen.Credentials-Entered-iPad-pseudo.png │ │ ├── loginScreen.Credentials-Entered-iPhone-16-en-GB.png │ │ ├── loginScreen.Credentials-Entered-iPhone-16-pseudo.png │ │ ├── loginScreen.Initial-State-iPad-en-GB.png │ │ ├── loginScreen.Initial-State-iPad-pseudo.png │ │ ├── loginScreen.Initial-State-iPhone-16-en-GB.png │ │ ├── loginScreen.Initial-State-iPhone-16-pseudo.png │ │ ├── loginScreen.Unsupported-iPad-en-GB.png │ │ ├── loginScreen.Unsupported-iPad-pseudo.png │ │ ├── loginScreen.Unsupported-iPhone-16-en-GB.png │ │ ├── loginScreen.Unsupported-iPhone-16-pseudo.png │ │ ├── longPressWithFeedback.iPad-en-GB-0.png │ │ ├── longPressWithFeedback.iPad-pseudo-0.png │ │ ├── longPressWithFeedback.iPhone-16-en-GB-0.png │ │ ├── longPressWithFeedback.iPhone-16-pseudo-0.png │ │ ├── manageRoomMemberSheetView.All-Actions-Disabled-iPad-en-GB.png │ │ ├── manageRoomMemberSheetView.All-Actions-Disabled-iPad-pseudo.png │ │ ├── manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-en-GB.png │ │ ├── manageRoomMemberSheetView.All-Actions-Disabled-iPhone-16-pseudo.png │ │ ├── manageRoomMemberSheetView.All-Actions-iPad-en-GB.png │ │ ├── manageRoomMemberSheetView.All-Actions-iPad-pseudo.png │ │ ├── manageRoomMemberSheetView.All-Actions-iPhone-16-en-GB.png │ │ ├── manageRoomMemberSheetView.All-Actions-iPhone-16-pseudo.png │ │ ├── manageRoomMemberSheetView.Ban-Only-iPad-en-GB.png │ │ ├── manageRoomMemberSheetView.Ban-Only-iPad-pseudo.png │ │ ├── manageRoomMemberSheetView.Ban-Only-iPhone-16-en-GB.png │ │ ├── manageRoomMemberSheetView.Ban-Only-iPhone-16-pseudo.png │ │ ├── manageRoomMemberSheetView.Kick-Only-iPad-en-GB.png │ │ ├── manageRoomMemberSheetView.Kick-Only-iPad-pseudo.png │ │ ├── manageRoomMemberSheetView.Kick-Only-iPhone-16-en-GB.png │ │ ├── manageRoomMemberSheetView.Kick-Only-iPhone-16-pseudo.png │ │ ├── manageRoomMemberSheetView.Unban-Only-iPad-en-GB.png │ │ ├── manageRoomMemberSheetView.Unban-Only-iPad-pseudo.png │ │ ├── manageRoomMemberSheetView.Unban-Only-iPhone-16-en-GB.png │ │ ├── manageRoomMemberSheetView.Unban-Only-iPhone-16-pseudo.png │ │ ├── mapLibreStaticMapView.iPad-en-GB-0.png │ │ ├── mapLibreStaticMapView.iPad-pseudo-0.png │ │ ├── mapLibreStaticMapView.iPhone-16-en-GB-0.png │ │ ├── mapLibreStaticMapView.iPhone-16-pseudo-0.png │ │ ├── matrixUserPermalink.iPad-en-GB-0.png │ │ ├── matrixUserPermalink.iPad-pseudo-0.png │ │ ├── matrixUserPermalink.iPhone-16-en-GB-0.png │ │ ├── matrixUserPermalink.iPhone-16-pseudo-0.png │ │ ├── mediaEventsTimelineScreen.Empty-Files-iPad-en-GB.png │ │ ├── mediaEventsTimelineScreen.Empty-Files-iPad-pseudo.png │ │ ├── mediaEventsTimelineScreen.Empty-Files-iPhone-16-en-GB.png │ │ ├── mediaEventsTimelineScreen.Empty-Files-iPhone-16-pseudo.png │ │ ├── mediaEventsTimelineScreen.Empty-Media-iPad-en-GB.png │ │ ├── mediaEventsTimelineScreen.Empty-Media-iPad-pseudo.png │ │ ├── mediaEventsTimelineScreen.Empty-Media-iPhone-16-en-GB.png │ │ ├── mediaEventsTimelineScreen.Empty-Media-iPhone-16-pseudo.png │ │ ├── mediaEventsTimelineScreen.Files-iPad-en-GB.png │ │ ├── mediaEventsTimelineScreen.Files-iPad-pseudo.png │ │ ├── mediaEventsTimelineScreen.Files-iPhone-16-en-GB.png │ │ ├── mediaEventsTimelineScreen.Files-iPhone-16-pseudo.png │ │ ├── mediaEventsTimelineScreen.Media-iPad-en-GB.png │ │ ├── mediaEventsTimelineScreen.Media-iPad-pseudo.png │ │ ├── mediaEventsTimelineScreen.Media-iPhone-16-en-GB.png │ │ ├── mediaEventsTimelineScreen.Media-iPhone-16-pseudo.png │ │ ├── mediaUploadPreviewScreen.Caption-warning-iPad-en-GB.png │ │ ├── mediaUploadPreviewScreen.Caption-warning-iPad-pseudo.png │ │ ├── mediaUploadPreviewScreen.Caption-warning-iPhone-16-en-GB.png │ │ ├── mediaUploadPreviewScreen.Caption-warning-iPhone-16-pseudo.png │ │ ├── mediaUploadPreviewScreen.iPad-en-GB-0.png │ │ ├── mediaUploadPreviewScreen.iPad-pseudo-0.png │ │ ├── mediaUploadPreviewScreen.iPhone-16-en-GB-0.png │ │ ├── mediaUploadPreviewScreen.iPhone-16-pseudo-0.png │ │ ├── mentionSuggestionItemView.All-users-iPad-en-GB.png │ │ ├── mentionSuggestionItemView.All-users-iPad-pseudo.png │ │ ├── mentionSuggestionItemView.All-users-iPhone-16-en-GB.png │ │ ├── mentionSuggestionItemView.All-users-iPhone-16-pseudo.png │ │ ├── mentionSuggestionItemView.Room-iPad-en-GB.png │ │ ├── mentionSuggestionItemView.Room-iPad-pseudo.png │ │ ├── mentionSuggestionItemView.Room-iPhone-16-en-GB.png │ │ ├── mentionSuggestionItemView.Room-iPhone-16-pseudo.png │ │ ├── mentionSuggestionItemView.User-iPad-en-GB.png │ │ ├── mentionSuggestionItemView.User-iPad-pseudo.png │ │ ├── mentionSuggestionItemView.User-iPhone-16-en-GB.png │ │ ├── mentionSuggestionItemView.User-iPhone-16-pseudo.png │ │ ├── mentionSuggestionItemView.User-no-display-name-iPad-en-GB.png │ │ ├── mentionSuggestionItemView.User-no-display-name-iPad-pseudo.png │ │ ├── mentionSuggestionItemView.User-no-display-name-iPhone-16-en-GB.png │ │ ├── mentionSuggestionItemView.User-no-display-name-iPhone-16-pseudo.png │ │ ├── messageComposer.Replying-iPad-en-GB.png │ │ ├── messageComposer.Replying-iPad-pseudo.png │ │ ├── messageComposer.Replying-iPhone-16-en-GB.png │ │ ├── messageComposer.Replying-iPhone-16-pseudo.png │ │ ├── messageComposer.Replying-in-thread-iPad-en-GB.png │ │ ├── messageComposer.Replying-in-thread-iPad-pseudo.png │ │ ├── messageComposer.Replying-in-thread-iPhone-16-en-GB.png │ │ ├── messageComposer.Replying-in-thread-iPhone-16-pseudo.png │ │ ├── messageComposer.iPad-en-GB-0.png │ │ ├── messageComposer.iPad-pseudo-0.png │ │ ├── messageComposer.iPhone-16-en-GB-0.png │ │ ├── messageComposer.iPhone-16-pseudo-0.png │ │ ├── messageComposerTextField.iPad-en-GB-0.png │ │ ├── messageComposerTextField.iPad-pseudo-0.png │ │ ├── messageComposerTextField.iPhone-16-en-GB-0.png │ │ ├── messageComposerTextField.iPhone-16-pseudo-0.png │ │ ├── messageForwardingScreen.iPad-en-GB-0.png │ │ ├── messageForwardingScreen.iPad-pseudo-0.png │ │ ├── messageForwardingScreen.iPhone-16-en-GB-0.png │ │ ├── messageForwardingScreen.iPhone-16-pseudo-0.png │ │ ├── messageText.Custom-Attachment-iPad-en-GB.png │ │ ├── messageText.Custom-Attachment-iPad-pseudo.png │ │ ├── messageText.Custom-Attachment-iPhone-16-en-GB.png │ │ ├── messageText.Custom-Attachment-iPhone-16-pseudo.png │ │ ├── messageText.Custom-Text-iPad-en-GB.png │ │ ├── messageText.Custom-Text-iPad-pseudo.png │ │ ├── messageText.Custom-Text-iPhone-16-en-GB.png │ │ ├── messageText.Custom-Text-iPhone-16-pseudo.png │ │ ├── messageText.SwiftUI-Default-Text-iPad-en-GB.png │ │ ├── messageText.SwiftUI-Default-Text-iPad-pseudo.png │ │ ├── messageText.SwiftUI-Default-Text-iPhone-16-en-GB.png │ │ ├── messageText.SwiftUI-Default-Text-iPhone-16-pseudo.png │ │ ├── messageText.With-block-quote-iPad-en-GB.png │ │ ├── messageText.With-block-quote-iPad-pseudo.png │ │ ├── messageText.With-block-quote-iPhone-16-en-GB.png │ │ ├── messageText.With-block-quote-iPhone-16-pseudo.png │ │ ├── messageText.With-list-iPad-en-GB.png │ │ ├── messageText.With-list-iPad-pseudo.png │ │ ├── messageText.With-list-iPhone-16-en-GB.png │ │ ├── messageText.With-list-iPhone-16-pseudo.png │ │ ├── noticeRoomTimelineView.iPad-en-GB-0.png │ │ ├── noticeRoomTimelineView.iPad-pseudo-0.png │ │ ├── noticeRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── noticeRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── notificationPermissionsScreen.iPad-en-GB-0.png │ │ ├── notificationPermissionsScreen.iPad-pseudo-0.png │ │ ├── notificationPermissionsScreen.iPhone-16-en-GB-0.png │ │ ├── notificationPermissionsScreen.iPhone-16-pseudo-0.png │ │ ├── notificationSettingsEditScreen.Applying-change-iPad-en-GB.png │ │ ├── notificationSettingsEditScreen.Applying-change-iPad-pseudo.png │ │ ├── notificationSettingsEditScreen.Applying-change-iPhone-16-en-GB.png │ │ ├── notificationSettingsEditScreen.Applying-change-iPhone-16-pseudo.png │ │ ├── notificationSettingsEditScreen.Direct-Chats-iPad-en-GB.png │ │ ├── notificationSettingsEditScreen.Direct-Chats-iPad-pseudo.png │ │ ├── notificationSettingsEditScreen.Direct-Chats-iPhone-16-en-GB.png │ │ ├── notificationSettingsEditScreen.Direct-Chats-iPhone-16-pseudo.png │ │ ├── notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-en-GB.png │ │ ├── notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPad-pseudo.png │ │ ├── notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-16-en-GB.png │ │ ├── notificationSettingsEditScreen.Group-Chats-Without-Disclaimer-iPhone-16-pseudo.png │ │ ├── notificationSettingsEditScreen.Group-Chats-iPad-en-GB.png │ │ ├── notificationSettingsEditScreen.Group-Chats-iPad-pseudo.png │ │ ├── notificationSettingsEditScreen.Group-Chats-iPhone-16-en-GB.png │ │ ├── notificationSettingsEditScreen.Group-Chats-iPhone-16-pseudo.png │ │ ├── notificationSettingsEditScreenRoomCell.iPad-en-GB-0.png │ │ ├── notificationSettingsEditScreenRoomCell.iPad-pseudo-0.png │ │ ├── notificationSettingsEditScreenRoomCell.iPhone-16-en-GB-0.png │ │ ├── notificationSettingsEditScreenRoomCell.iPhone-16-pseudo-0.png │ │ ├── notificationSettingsScreen.Configuration-mismatch-iPad-en-GB.png │ │ ├── notificationSettingsScreen.Configuration-mismatch-iPad-pseudo.png │ │ ├── notificationSettingsScreen.Configuration-mismatch-iPhone-16-en-GB.png │ │ ├── notificationSettingsScreen.Configuration-mismatch-iPhone-16-pseudo.png │ │ ├── notificationSettingsScreen.iPad-en-GB-0.png │ │ ├── notificationSettingsScreen.iPad-pseudo-0.png │ │ ├── notificationSettingsScreen.iPhone-16-en-GB-0.png │ │ ├── notificationSettingsScreen.iPhone-16-pseudo-0.png │ │ ├── pINTextField.iPad-en-GB-0.png │ │ ├── pINTextField.iPad-pseudo-0.png │ │ ├── pINTextField.iPhone-16-en-GB-0.png │ │ ├── pINTextField.iPhone-16-pseudo-0.png │ │ ├── paginationIndicatorRoomTimelineView.iPad-en-GB-0.png │ │ ├── paginationIndicatorRoomTimelineView.iPad-pseudo-0.png │ │ ├── paginationIndicatorRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── paginationIndicatorRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── pillView.Message-link-iPad-en-GB.png │ │ ├── pillView.Message-link-iPad-pseudo.png │ │ ├── pillView.Message-link-iPhone-16-en-GB.png │ │ ├── pillView.Message-link-iPhone-16-pseudo.png │ │ ├── pillView.Message-link-without-room-name-iPad-en-GB.png │ │ ├── pillView.Message-link-without-room-name-iPad-pseudo.png │ │ ├── pillView.Message-link-without-room-name-iPhone-16-en-GB.png │ │ ├── pillView.Message-link-without-room-name-iPhone-16-pseudo.png │ │ ├── pillView.Own-user-iPad-en-GB.png │ │ ├── pillView.Own-user-iPad-pseudo.png │ │ ├── pillView.Own-user-iPhone-16-en-GB.png │ │ ├── pillView.Own-user-iPhone-16-pseudo.png │ │ ├── pillView.Room-iPad-en-GB.png │ │ ├── pillView.Room-iPad-pseudo.png │ │ ├── pillView.Room-iPhone-16-en-GB.png │ │ ├── pillView.Room-iPhone-16-pseudo.png │ │ ├── pillView.Room-without-name-iPad-en-GB.png │ │ ├── pillView.Room-without-name-iPad-pseudo.png │ │ ├── pillView.Room-without-name-iPhone-16-en-GB.png │ │ ├── pillView.Room-without-name-iPhone-16-pseudo.png │ │ ├── pillView.User-iPad-en-GB.png │ │ ├── pillView.User-iPad-pseudo.png │ │ ├── pillView.User-iPhone-16-en-GB.png │ │ ├── pillView.User-iPhone-16-pseudo.png │ │ ├── pillView.User-with-a-long-name-iPad-en-GB.png │ │ ├── pillView.User-with-a-long-name-iPad-pseudo.png │ │ ├── pillView.User-with-a-long-name-iPhone-16-en-GB.png │ │ ├── pillView.User-with-a-long-name-iPhone-16-pseudo.png │ │ ├── pillView.User-with-missing-name-iPad-en-GB.png │ │ ├── pillView.User-with-missing-name-iPad-pseudo.png │ │ ├── pillView.User-with-missing-name-iPhone-16-en-GB.png │ │ ├── pillView.User-with-missing-name-iPhone-16-pseudo.png │ │ ├── pinnedEventsTimelineScreen.Empty-iPad-en-GB.png │ │ ├── pinnedEventsTimelineScreen.Empty-iPad-pseudo.png │ │ ├── pinnedEventsTimelineScreen.Empty-iPhone-16-en-GB.png │ │ ├── pinnedEventsTimelineScreen.Empty-iPhone-16-pseudo.png │ │ ├── pinnedItemsBannerView.iPad-en-GB-0.png │ │ ├── pinnedItemsBannerView.iPad-pseudo-0.png │ │ ├── pinnedItemsBannerView.iPhone-16-en-GB-0.png │ │ ├── pinnedItemsBannerView.iPhone-16-pseudo-0.png │ │ ├── pinnedItemsIndicatorView.iPad-en-GB-0.png │ │ ├── pinnedItemsIndicatorView.iPad-pseudo-0.png │ │ ├── pinnedItemsIndicatorView.iPhone-16-en-GB-0.png │ │ ├── pinnedItemsIndicatorView.iPhone-16-pseudo-0.png │ │ ├── placeholderAvatarImage.iPad-en-GB-0.png │ │ ├── placeholderAvatarImage.iPad-pseudo-0.png │ │ ├── placeholderAvatarImage.iPhone-16-en-GB-0.png │ │ ├── placeholderAvatarImage.iPhone-16-pseudo-0.png │ │ ├── placeholderScreen.Screen-iPad-en-GB.png │ │ ├── placeholderScreen.Screen-iPad-pseudo.png │ │ ├── placeholderScreen.Screen-iPhone-16-en-GB.png │ │ ├── placeholderScreen.Screen-iPhone-16-pseudo.png │ │ ├── placeholderScreen.Split-View-iPad-en-GB.png │ │ ├── placeholderScreen.Split-View-iPad-pseudo.png │ │ ├── placeholderScreen.Split-View-iPhone-16-en-GB.png │ │ ├── placeholderScreen.Split-View-iPhone-16-pseudo.png │ │ ├── placeholderScreen.With-background-iPad-en-GB.png │ │ ├── placeholderScreen.With-background-iPad-pseudo.png │ │ ├── placeholderScreen.With-background-iPhone-16-en-GB.png │ │ ├── placeholderScreen.With-background-iPhone-16-pseudo.png │ │ ├── pollFormScreen.Edit-iPad-en-GB.png │ │ ├── pollFormScreen.Edit-iPad-pseudo.png │ │ ├── pollFormScreen.Edit-iPhone-16-en-GB.png │ │ ├── pollFormScreen.Edit-iPhone-16-pseudo.png │ │ ├── pollFormScreen.New-iPad-en-GB.png │ │ ├── pollFormScreen.New-iPad-pseudo.png │ │ ├── pollFormScreen.New-iPhone-16-en-GB.png │ │ ├── pollFormScreen.New-iPhone-16-pseudo.png │ │ ├── pollOptionView.iPad-en-GB-0.png │ │ ├── pollOptionView.iPad-pseudo-0.png │ │ ├── pollOptionView.iPhone-16-en-GB-0.png │ │ ├── pollOptionView.iPhone-16-pseudo-0.png │ │ ├── pollRoomTimelineView.Creator-disclosed-Bubble-iPad-en-GB.png │ │ ├── pollRoomTimelineView.Creator-disclosed-Bubble-iPad-pseudo.png │ │ ├── pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-16-en-GB.png │ │ ├── pollRoomTimelineView.Creator-disclosed-Bubble-iPhone-16-pseudo.png │ │ ├── pollRoomTimelineView.Creator-no-votes-Bubble-iPad-en-GB.png │ │ ├── pollRoomTimelineView.Creator-no-votes-Bubble-iPad-pseudo.png │ │ ├── pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-16-en-GB.png │ │ ├── pollRoomTimelineView.Creator-no-votes-Bubble-iPhone-16-pseudo.png │ │ ├── pollRoomTimelineView.Disclosed-Bubble-iPad-en-GB.png │ │ ├── pollRoomTimelineView.Disclosed-Bubble-iPad-pseudo.png │ │ ├── pollRoomTimelineView.Disclosed-Bubble-iPhone-16-en-GB.png │ │ ├── pollRoomTimelineView.Disclosed-Bubble-iPhone-16-pseudo.png │ │ ├── pollRoomTimelineView.Ended-Disclosed-Bubble-iPad-en-GB.png │ │ ├── pollRoomTimelineView.Ended-Disclosed-Bubble-iPad-pseudo.png │ │ ├── pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-16-en-GB.png │ │ ├── pollRoomTimelineView.Ended-Disclosed-Bubble-iPhone-16-pseudo.png │ │ ├── pollRoomTimelineView.Ended-Undisclosed-Bubble-iPad-en-GB.png │ │ ├── pollRoomTimelineView.Ended-Undisclosed-Bubble-iPad-pseudo.png │ │ ├── pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-16-en-GB.png │ │ ├── pollRoomTimelineView.Ended-Undisclosed-Bubble-iPhone-16-pseudo.png │ │ ├── pollRoomTimelineView.Preview-iPad-en-GB.png │ │ ├── pollRoomTimelineView.Preview-iPad-pseudo.png │ │ ├── pollRoomTimelineView.Preview-iPhone-16-en-GB.png │ │ ├── pollRoomTimelineView.Preview-iPhone-16-pseudo.png │ │ ├── pollRoomTimelineView.Undisclosed-Bubble-iPad-en-GB.png │ │ ├── pollRoomTimelineView.Undisclosed-Bubble-iPad-pseudo.png │ │ ├── pollRoomTimelineView.Undisclosed-Bubble-iPhone-16-en-GB.png │ │ ├── pollRoomTimelineView.Undisclosed-Bubble-iPhone-16-pseudo.png │ │ ├── pollView.Creator-disclosed-iPad-en-GB.png │ │ ├── pollView.Creator-disclosed-iPad-pseudo.png │ │ ├── pollView.Creator-disclosed-iPhone-16-en-GB.png │ │ ├── pollView.Creator-disclosed-iPhone-16-pseudo.png │ │ ├── pollView.Creator-no-votes-iPad-en-GB.png │ │ ├── pollView.Creator-no-votes-iPad-pseudo.png │ │ ├── pollView.Creator-no-votes-iPhone-16-en-GB.png │ │ ├── pollView.Creator-no-votes-iPhone-16-pseudo.png │ │ ├── pollView.Disclosed-iPad-en-GB.png │ │ ├── pollView.Disclosed-iPad-pseudo.png │ │ ├── pollView.Disclosed-iPhone-16-en-GB.png │ │ ├── pollView.Disclosed-iPhone-16-pseudo.png │ │ ├── pollView.Ended-Disclosed-iPad-en-GB.png │ │ ├── pollView.Ended-Disclosed-iPad-pseudo.png │ │ ├── pollView.Ended-Disclosed-iPhone-16-en-GB.png │ │ ├── pollView.Ended-Disclosed-iPhone-16-pseudo.png │ │ ├── pollView.Ended-Undisclosed-iPad-en-GB.png │ │ ├── pollView.Ended-Undisclosed-iPad-pseudo.png │ │ ├── pollView.Ended-Undisclosed-iPhone-16-en-GB.png │ │ ├── pollView.Ended-Undisclosed-iPhone-16-pseudo.png │ │ ├── pollView.Preview-iPad-en-GB.png │ │ ├── pollView.Preview-iPad-pseudo.png │ │ ├── pollView.Preview-iPhone-16-en-GB.png │ │ ├── pollView.Preview-iPhone-16-pseudo.png │ │ ├── pollView.Undisclosed-iPad-en-GB.png │ │ ├── pollView.Undisclosed-iPad-pseudo.png │ │ ├── pollView.Undisclosed-iPhone-16-en-GB.png │ │ ├── pollView.Undisclosed-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Cancelled-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Cancelled-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Cancelled-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Cancelled-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Connecting-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Connecting-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Connecting-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Connecting-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Connection-not-secure-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Connection-not-secure-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Connection-not-secure-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Connection-not-secure-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Declined-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Declined-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Declined-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Declined-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Device-code-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Device-code-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Device-code-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Device-code-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Device-not-signed-in-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Device-not-signed-in-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Device-not-signed-in-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Device-not-signed-in-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Device-not-supported-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Device-not-supported-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Device-not-supported-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Device-not-supported-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Expired-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Expired-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Expired-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Expired-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Initial-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Initial-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Initial-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Initial-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Invalid-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Invalid-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Invalid-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Invalid-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Linking-unsupported-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Linking-unsupported-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Linking-unsupported-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Linking-unsupported-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Linking-unsupported-restricted-flow-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.No-Camera-Permission-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.No-Camera-Permission-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.No-Camera-Permission-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.No-Camera-Permission-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Not-allowed-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Not-allowed-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Not-allowed-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Not-allowed-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Scanning-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Scanning-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Scanning-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Scanning-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Unknown-error-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Unknown-error-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Unknown-error-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Unknown-error-iPhone-16-pseudo.png │ │ ├── qRCodeLoginScreen.Verification-code-iPad-en-GB.png │ │ ├── qRCodeLoginScreen.Verification-code-iPad-pseudo.png │ │ ├── qRCodeLoginScreen.Verification-code-iPhone-16-en-GB.png │ │ ├── qRCodeLoginScreen.Verification-code-iPhone-16-pseudo.png │ │ ├── reactionsSummaryView.iPad-en-GB-0.png │ │ ├── reactionsSummaryView.iPad-pseudo-0.png │ │ ├── reactionsSummaryView.iPhone-16-en-GB-0.png │ │ ├── reactionsSummaryView.iPhone-16-pseudo-0.png │ │ ├── readMarkerRoomTimelineView.iPad-en-GB-0.png │ │ ├── readMarkerRoomTimelineView.iPad-pseudo-0.png │ │ ├── readMarkerRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── readMarkerRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── readReceiptCell.Loading-Member-iPad-en-GB.png │ │ ├── readReceiptCell.Loading-Member-iPad-pseudo.png │ │ ├── readReceiptCell.Loading-Member-iPhone-16-en-GB.png │ │ ├── readReceiptCell.Loading-Member-iPhone-16-pseudo.png │ │ ├── readReceiptCell.No-Image-iPad-en-GB.png │ │ ├── readReceiptCell.No-Image-iPad-pseudo.png │ │ ├── readReceiptCell.No-Image-iPhone-16-en-GB.png │ │ ├── readReceiptCell.No-Image-iPhone-16-pseudo.png │ │ ├── readReceiptCell.With-Image-iPad-en-GB.png │ │ ├── readReceiptCell.With-Image-iPad-pseudo.png │ │ ├── readReceiptCell.With-Image-iPhone-16-en-GB.png │ │ ├── readReceiptCell.With-Image-iPhone-16-pseudo.png │ │ ├── readReceiptsSummaryView.iPad-en-GB-0.png │ │ ├── readReceiptsSummaryView.iPad-pseudo-0.png │ │ ├── readReceiptsSummaryView.iPhone-16-en-GB-0.png │ │ ├── readReceiptsSummaryView.iPhone-16-pseudo-0.png │ │ ├── redactedRoomTimelineView.iPad-en-GB-0.png │ │ ├── redactedRoomTimelineView.iPad-pseudo-0.png │ │ ├── redactedRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── redactedRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── reportContentScreen.iPad-en-GB-0.png │ │ ├── reportContentScreen.iPad-pseudo-0.png │ │ ├── reportContentScreen.iPhone-16-en-GB-0.png │ │ ├── reportContentScreen.iPhone-16-pseudo-0.png │ │ ├── reportRoomScreen.iPad-en-GB-0.png │ │ ├── reportRoomScreen.iPad-pseudo-0.png │ │ ├── reportRoomScreen.iPhone-16-en-GB-0.png │ │ ├── reportRoomScreen.iPhone-16-pseudo-0.png │ │ ├── resolveVerifiedUserSendFailureScreen.Identity-Changed-iPad-en-GB.png │ │ ├── resolveVerifiedUserSendFailureScreen.Identity-Changed-iPad-pseudo.png │ │ ├── resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-16-en-GB.png │ │ ├── resolveVerifiedUserSendFailureScreen.Identity-Changed-iPhone-16-pseudo.png │ │ ├── resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPad-en-GB.png │ │ ├── resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPad-pseudo.png │ │ ├── resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-16-en-GB.png │ │ ├── resolveVerifiedUserSendFailureScreen.Own-Unsigned-Device-iPhone-16-pseudo.png │ │ ├── resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPad-en-GB.png │ │ ├── resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPad-pseudo.png │ │ ├── resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-16-en-GB.png │ │ ├── resolveVerifiedUserSendFailureScreen.Unsigned-Device-iPhone-16-pseudo.png │ │ ├── roomAttachmentPicker.iPad-en-GB-0.png │ │ ├── roomAttachmentPicker.iPad-pseudo-0.png │ │ ├── roomAttachmentPicker.iPhone-16-en-GB-0.png │ │ ├── roomAttachmentPicker.iPhone-16-pseudo-0.png │ │ ├── roomAvatarImage.iPad-en-GB-0.png │ │ ├── roomAvatarImage.iPad-pseudo-0.png │ │ ├── roomAvatarImage.iPhone-16-en-GB-0.png │ │ ├── roomAvatarImage.iPhone-16-pseudo-0.png │ │ ├── roomChangePermissionsScreen.Member-moderation-iPad-en-GB.png │ │ ├── roomChangePermissionsScreen.Member-moderation-iPad-pseudo.png │ │ ├── roomChangePermissionsScreen.Member-moderation-iPhone-16-en-GB.png │ │ ├── roomChangePermissionsScreen.Member-moderation-iPhone-16-pseudo.png │ │ ├── roomChangePermissionsScreen.Messages-and-Content-iPad-en-GB.png │ │ ├── roomChangePermissionsScreen.Messages-and-Content-iPad-pseudo.png │ │ ├── roomChangePermissionsScreen.Messages-and-Content-iPhone-16-en-GB.png │ │ ├── roomChangePermissionsScreen.Messages-and-Content-iPhone-16-pseudo.png │ │ ├── roomChangePermissionsScreen.Room-details-iPad-en-GB.png │ │ ├── roomChangePermissionsScreen.Room-details-iPad-pseudo.png │ │ ├── roomChangePermissionsScreen.Room-details-iPhone-16-en-GB.png │ │ ├── roomChangePermissionsScreen.Room-details-iPhone-16-pseudo.png │ │ ├── roomChangeRolesScreen.Administrators-iPad-en-GB.png │ │ ├── roomChangeRolesScreen.Administrators-iPad-pseudo.png │ │ ├── roomChangeRolesScreen.Administrators-iPhone-16-en-GB.png │ │ ├── roomChangeRolesScreen.Administrators-iPhone-16-pseudo.png │ │ ├── roomChangeRolesScreen.Moderators-iPad-en-GB.png │ │ ├── roomChangeRolesScreen.Moderators-iPad-pseudo.png │ │ ├── roomChangeRolesScreen.Moderators-iPhone-16-en-GB.png │ │ ├── roomChangeRolesScreen.Moderators-iPhone-16-pseudo.png │ │ ├── roomChangeRolesScreenRow.iPad-en-GB-0.png │ │ ├── roomChangeRolesScreenRow.iPad-pseudo-0.png │ │ ├── roomChangeRolesScreenRow.iPhone-16-en-GB-0.png │ │ ├── roomChangeRolesScreenRow.iPhone-16-pseudo-0.png │ │ ├── roomChangeRolesScreenSelectedItem.iPad-en-GB-0.png │ │ ├── roomChangeRolesScreenSelectedItem.iPad-pseudo-0.png │ │ ├── roomChangeRolesScreenSelectedItem.iPhone-16-en-GB-0.png │ │ ├── roomChangeRolesScreenSelectedItem.iPhone-16-pseudo-0.png │ │ ├── roomDetailsEditScreen.Editable-iPad-en-GB.png │ │ ├── roomDetailsEditScreen.Editable-iPad-pseudo.png │ │ ├── roomDetailsEditScreen.Editable-iPhone-16-en-GB.png │ │ ├── roomDetailsEditScreen.Editable-iPhone-16-pseudo.png │ │ ├── roomDetailsEditScreen.Read-only-iPad-en-GB.png │ │ ├── roomDetailsEditScreen.Read-only-iPad-pseudo.png │ │ ├── roomDetailsEditScreen.Read-only-iPhone-16-en-GB.png │ │ ├── roomDetailsEditScreen.Read-only-iPhone-16-pseudo.png │ │ ├── roomDetailsScreen.DM-Room-Verification-Violation-iPad-en-GB.png │ │ ├── roomDetailsScreen.DM-Room-Verification-Violation-iPad-pseudo.png │ │ ├── roomDetailsScreen.DM-Room-Verification-Violation-iPhone-16-en-GB.png │ │ ├── roomDetailsScreen.DM-Room-Verification-Violation-iPhone-16-pseudo.png │ │ ├── roomDetailsScreen.DM-Room-Verified-iPad-en-GB.png │ │ ├── roomDetailsScreen.DM-Room-Verified-iPad-pseudo.png │ │ ├── roomDetailsScreen.DM-Room-Verified-iPhone-16-en-GB.png │ │ ├── roomDetailsScreen.DM-Room-Verified-iPhone-16-pseudo.png │ │ ├── roomDetailsScreen.DM-Room-iPad-en-GB.png │ │ ├── roomDetailsScreen.DM-Room-iPad-pseudo.png │ │ ├── roomDetailsScreen.DM-Room-iPhone-16-en-GB.png │ │ ├── roomDetailsScreen.DM-Room-iPhone-16-pseudo.png │ │ ├── roomDetailsScreen.Generic-Room-iPad-en-GB.png │ │ ├── roomDetailsScreen.Generic-Room-iPad-pseudo.png │ │ ├── roomDetailsScreen.Generic-Room-iPhone-16-en-GB.png │ │ ├── roomDetailsScreen.Generic-Room-iPhone-16-pseudo.png │ │ ├── roomDetailsScreen.Simple-Room-iPad-en-GB.png │ │ ├── roomDetailsScreen.Simple-Room-iPad-pseudo.png │ │ ├── roomDetailsScreen.Simple-Room-iPhone-16-en-GB.png │ │ ├── roomDetailsScreen.Simple-Room-iPhone-16-pseudo.png │ │ ├── roomDirectorySearchCell.iPad-en-GB-0.png │ │ ├── roomDirectorySearchCell.iPad-pseudo-0.png │ │ ├── roomDirectorySearchCell.iPhone-16-en-GB-0.png │ │ ├── roomDirectorySearchCell.iPhone-16-pseudo-0.png │ │ ├── roomDirectorySearchScreen.iPad-en-GB-0.png │ │ ├── roomDirectorySearchScreen.iPad-pseudo-0.png │ │ ├── roomDirectorySearchScreen.iPhone-16-en-GB-0.png │ │ ├── roomDirectorySearchScreen.iPhone-16-pseudo-0.png │ │ ├── roomHeaderView.iPad-en-GB-0.png │ │ ├── roomHeaderView.iPad-pseudo-0.png │ │ ├── roomHeaderView.iPhone-16-en-GB-0.png │ │ ├── roomHeaderView.iPhone-16-pseudo-0.png │ │ ├── roomInviterLabel.iPad-en-GB-0.png │ │ ├── roomInviterLabel.iPad-pseudo-0.png │ │ ├── roomInviterLabel.iPhone-16-en-GB-0.png │ │ ├── roomInviterLabel.iPhone-16-pseudo-0.png │ │ ├── roomListFilterView.iPad-en-GB-0.png │ │ ├── roomListFilterView.iPad-en-GB-1.png │ │ ├── roomListFilterView.iPad-pseudo-0.png │ │ ├── roomListFilterView.iPad-pseudo-1.png │ │ ├── roomListFilterView.iPhone-16-en-GB-0.png │ │ ├── roomListFilterView.iPhone-16-en-GB-1.png │ │ ├── roomListFilterView.iPhone-16-pseudo-0.png │ │ ├── roomListFilterView.iPhone-16-pseudo-1.png │ │ ├── roomListFiltersEmptyStateView.iPad-en-GB-0.png │ │ ├── roomListFiltersEmptyStateView.iPad-pseudo-0.png │ │ ├── roomListFiltersEmptyStateView.iPhone-16-en-GB-0.png │ │ ├── roomListFiltersEmptyStateView.iPhone-16-pseudo-0.png │ │ ├── roomListFiltersView.iPad-en-GB-0.png │ │ ├── roomListFiltersView.iPad-en-GB-1.png │ │ ├── roomListFiltersView.iPad-pseudo-0.png │ │ ├── roomListFiltersView.iPad-pseudo-1.png │ │ ├── roomListFiltersView.iPhone-16-en-GB-0.png │ │ ├── roomListFiltersView.iPhone-16-en-GB-1.png │ │ ├── roomListFiltersView.iPhone-16-pseudo-0.png │ │ ├── roomListFiltersView.iPhone-16-pseudo-1.png │ │ ├── roomMemberDetailsScreen.Account-Owner-iPad-en-GB.png │ │ ├── roomMemberDetailsScreen.Account-Owner-iPad-pseudo.png │ │ ├── roomMemberDetailsScreen.Account-Owner-iPhone-16-en-GB.png │ │ ├── roomMemberDetailsScreen.Account-Owner-iPhone-16-pseudo.png │ │ ├── roomMemberDetailsScreen.Ignored-User-iPad-en-GB.png │ │ ├── roomMemberDetailsScreen.Ignored-User-iPad-pseudo.png │ │ ├── roomMemberDetailsScreen.Ignored-User-iPhone-16-en-GB.png │ │ ├── roomMemberDetailsScreen.Ignored-User-iPhone-16-pseudo.png │ │ ├── roomMemberDetailsScreen.Other-User-iPad-en-GB.png │ │ ├── roomMemberDetailsScreen.Other-User-iPad-pseudo.png │ │ ├── roomMemberDetailsScreen.Other-User-iPhone-16-en-GB.png │ │ ├── roomMemberDetailsScreen.Other-User-iPhone-16-pseudo.png │ │ ├── roomMemberDetailsScreen.Verification-Violation-User-iPad-en-GB.png │ │ ├── roomMemberDetailsScreen.Verification-Violation-User-iPad-pseudo.png │ │ ├── roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-en-GB.png │ │ ├── roomMemberDetailsScreen.Verification-Violation-User-iPhone-16-pseudo.png │ │ ├── roomMemberDetailsScreen.Verified-User-iPad-en-GB.png │ │ ├── roomMemberDetailsScreen.Verified-User-iPad-pseudo.png │ │ ├── roomMemberDetailsScreen.Verified-User-iPhone-16-en-GB.png │ │ ├── roomMemberDetailsScreen.Verified-User-iPhone-16-pseudo.png │ │ ├── roomMembersListMemberCell.iPad-en-GB-0.png │ │ ├── roomMembersListMemberCell.iPad-pseudo-0.png │ │ ├── roomMembersListMemberCell.iPhone-16-en-GB-0.png │ │ ├── roomMembersListMemberCell.iPhone-16-pseudo-0.png │ │ ├── roomMembersListScreen.Admin-Banned-iPad-en-GB.png │ │ ├── roomMembersListScreen.Admin-Banned-iPad-pseudo.png │ │ ├── roomMembersListScreen.Admin-Banned-iPhone-16-en-GB.png │ │ ├── roomMembersListScreen.Admin-Banned-iPhone-16-pseudo.png │ │ ├── roomMembersListScreen.Admin-Empty-Banned-iPad-en-GB.png │ │ ├── roomMembersListScreen.Admin-Empty-Banned-iPad-pseudo.png │ │ ├── roomMembersListScreen.Admin-Empty-Banned-iPhone-16-en-GB.png │ │ ├── roomMembersListScreen.Admin-Empty-Banned-iPhone-16-pseudo.png │ │ ├── roomMembersListScreen.Admin-Members-iPad-en-GB.png │ │ ├── roomMembersListScreen.Admin-Members-iPad-pseudo.png │ │ ├── roomMembersListScreen.Admin-Members-iPhone-16-en-GB.png │ │ ├── roomMembersListScreen.Admin-Members-iPhone-16-pseudo.png │ │ ├── roomMembersListScreen.Invites-iPad-en-GB.png │ │ ├── roomMembersListScreen.Invites-iPad-pseudo.png │ │ ├── roomMembersListScreen.Invites-iPhone-16-en-GB.png │ │ ├── roomMembersListScreen.Invites-iPhone-16-pseudo.png │ │ ├── roomMembersListScreen.Member-iPad-en-GB.png │ │ ├── roomMembersListScreen.Member-iPad-pseudo.png │ │ ├── roomMembersListScreen.Member-iPhone-16-en-GB.png │ │ ├── roomMembersListScreen.Member-iPhone-16-pseudo.png │ │ ├── roomNotificationSettingsCustomSectionView.Encrypted-iPad-en-GB.png │ │ ├── roomNotificationSettingsCustomSectionView.Encrypted-iPad-pseudo.png │ │ ├── roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-en-GB.png │ │ ├── roomNotificationSettingsCustomSectionView.Encrypted-iPhone-16-pseudo.png │ │ ├── roomNotificationSettingsCustomSectionView.Unencrypted-iPad-en-GB.png │ │ ├── roomNotificationSettingsCustomSectionView.Unencrypted-iPad-pseudo.png │ │ ├── roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-en-GB.png │ │ ├── roomNotificationSettingsCustomSectionView.Unencrypted-iPhone-16-pseudo.png │ │ ├── roomNotificationSettingsScreen.Custom-iPad-en-GB.png │ │ ├── roomNotificationSettingsScreen.Custom-iPad-pseudo.png │ │ ├── roomNotificationSettingsScreen.Custom-iPhone-16-en-GB.png │ │ ├── roomNotificationSettingsScreen.Custom-iPhone-16-pseudo.png │ │ ├── roomNotificationSettingsScreen.Default-iPad-en-GB.png │ │ ├── roomNotificationSettingsScreen.Default-iPad-pseudo.png │ │ ├── roomNotificationSettingsScreen.Default-iPhone-16-en-GB.png │ │ ├── roomNotificationSettingsScreen.Default-iPhone-16-pseudo.png │ │ ├── roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-en-GB.png │ │ ├── roomNotificationSettingsUserDefinedScreen.Encrypted-iPad-pseudo.png │ │ ├── roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-en-GB.png │ │ ├── roomNotificationSettingsUserDefinedScreen.Encrypted-iPhone-16-pseudo.png │ │ ├── roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-en-GB.png │ │ ├── roomNotificationSettingsUserDefinedScreen.Unencrypted-iPad-pseudo.png │ │ ├── roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-en-GB.png │ │ ├── roomNotificationSettingsUserDefinedScreen.Unencrypted-iPhone-16-pseudo.png │ │ ├── roomPollsHistoryScreen.No-polls-iPad-en-GB.png │ │ ├── roomPollsHistoryScreen.No-polls-iPad-pseudo.png │ │ ├── roomPollsHistoryScreen.No-polls-iPhone-16-en-GB.png │ │ ├── roomPollsHistoryScreen.No-polls-iPhone-16-pseudo.png │ │ ├── roomPollsHistoryScreen.polls-iPad-en-GB.png │ │ ├── roomPollsHistoryScreen.polls-iPad-pseudo.png │ │ ├── roomPollsHistoryScreen.polls-iPhone-16-en-GB.png │ │ ├── roomPollsHistoryScreen.polls-iPhone-16-pseudo.png │ │ ├── roomRolesAndPermissionsScreen.iPad-en-GB-0.png │ │ ├── roomRolesAndPermissionsScreen.iPad-pseudo-0.png │ │ ├── roomRolesAndPermissionsScreen.iPhone-16-en-GB-0.png │ │ ├── roomRolesAndPermissionsScreen.iPhone-16-pseudo-0.png │ │ ├── roomScreen.Normal-iPad-en-GB.png │ │ ├── roomScreen.Normal-iPad-pseudo.png │ │ ├── roomScreen.Normal-iPhone-16-en-GB.png │ │ ├── roomScreen.Normal-iPhone-16-pseudo.png │ │ ├── roomScreen.Read-only-iPad-en-GB.png │ │ ├── roomScreen.Read-only-iPad-pseudo.png │ │ ├── roomScreen.Read-only-iPhone-16-en-GB.png │ │ ├── roomScreen.Read-only-iPhone-16-pseudo.png │ │ ├── roomScreen.Tombstoned-iPad-en-GB.png │ │ ├── roomScreen.Tombstoned-iPad-pseudo.png │ │ ├── roomScreen.Tombstoned-iPhone-16-en-GB.png │ │ ├── roomScreen.Tombstoned-iPhone-16-pseudo.png │ │ ├── roomScreenFooterView.Verification-Violation-iPad-en-GB.png │ │ ├── roomScreenFooterView.Verification-Violation-iPad-pseudo.png │ │ ├── roomScreenFooterView.Verification-Violation-iPhone-16-en-GB.png │ │ ├── roomScreenFooterView.Verification-Violation-iPhone-16-pseudo.png │ │ ├── roomScreenFooterView.With-displayname-iPad-en-GB.png │ │ ├── roomScreenFooterView.With-displayname-iPad-pseudo.png │ │ ├── roomScreenFooterView.With-displayname-iPhone-16-en-GB.png │ │ ├── roomScreenFooterView.With-displayname-iPhone-16-pseudo.png │ │ ├── roomScreenFooterView.Without-displayname-iPad-en-GB.png │ │ ├── roomScreenFooterView.Without-displayname-iPad-pseudo.png │ │ ├── roomScreenFooterView.Without-displayname-iPhone-16-en-GB.png │ │ ├── roomScreenFooterView.Without-displayname-iPhone-16-pseudo.png │ │ ├── roomSelectionScreen.iPad-en-GB-0.png │ │ ├── roomSelectionScreen.iPad-pseudo-0.png │ │ ├── roomSelectionScreen.iPhone-16-en-GB-0.png │ │ ├── roomSelectionScreen.iPhone-16-pseudo-0.png │ │ ├── sFNumberedListView.iPad-en-GB-0.png │ │ ├── sFNumberedListView.iPad-pseudo-0.png │ │ ├── sFNumberedListView.iPhone-16-en-GB-0.png │ │ ├── sFNumberedListView.iPhone-16-pseudo-0.png │ │ ├── secureBackupKeyBackupScreen.Set-up-iPad-en-GB.png │ │ ├── secureBackupKeyBackupScreen.Set-up-iPad-pseudo.png │ │ ├── secureBackupKeyBackupScreen.Set-up-iPhone-16-en-GB.png │ │ ├── secureBackupKeyBackupScreen.Set-up-iPhone-16-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Confirmation-iPad-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Confirmation-iPad-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Confirmation-iPhone-16-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Offline-iPad-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Offline-iPad-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Offline-iPhone-16-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Offline-iPhone-16-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Ongoing-iPad-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Ongoing-iPad-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Ongoing-iPhone-16-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Stalled-iPad-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Stalled-iPad-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Stalled-iPhone-16-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Waiting-iPad-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Waiting-iPad-pseudo.png │ │ ├── secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-en-GB.png │ │ ├── secureBackupLogoutConfirmationScreen.Waiting-iPhone-16-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Generating-iPad-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Generating-iPad-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Generating-iPhone-16-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Generating-iPhone-16-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Incomplete-iPad-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Incomplete-iPad-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Incomplete-iPhone-16-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Not-set-up-iPad-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Not-set-up-iPad-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Not-set-up-iPhone-16-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Set-up-iPad-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Set-up-iPad-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Set-up-iPhone-16-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Set-up-iPhone-16-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Unknown-iPad-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Unknown-iPad-pseudo.png │ │ ├── secureBackupRecoveryKeyScreen.Unknown-iPhone-16-en-GB.png │ │ ├── secureBackupRecoveryKeyScreen.Unknown-iPhone-16-pseudo.png │ │ ├── secureBackupScreen.Both-setup-iPad-en-GB.png │ │ ├── secureBackupScreen.Both-setup-iPad-pseudo.png │ │ ├── secureBackupScreen.Both-setup-iPhone-16-en-GB.png │ │ ├── secureBackupScreen.Both-setup-iPhone-16-pseudo.png │ │ ├── secureBackupScreen.Key-backup-disabled-iPad-en-GB.png │ │ ├── secureBackupScreen.Key-backup-disabled-iPad-pseudo.png │ │ ├── secureBackupScreen.Key-backup-disabled-iPhone-16-en-GB.png │ │ ├── secureBackupScreen.Key-backup-disabled-iPhone-16-pseudo.png │ │ ├── secureBackupScreen.Only-key-backup-setup-iPad-en-GB.png │ │ ├── secureBackupScreen.Only-key-backup-setup-iPad-pseudo.png │ │ ├── secureBackupScreen.Only-key-backup-setup-iPhone-16-en-GB.png │ │ ├── secureBackupScreen.Only-key-backup-setup-iPhone-16-pseudo.png │ │ ├── secureBackupScreen.Recovery-incomplete-iPad-en-GB.png │ │ ├── secureBackupScreen.Recovery-incomplete-iPad-pseudo.png │ │ ├── secureBackupScreen.Recovery-incomplete-iPhone-16-en-GB.png │ │ ├── secureBackupScreen.Recovery-incomplete-iPhone-16-pseudo.png │ │ ├── securityAndPrivacyScreen.Private-invite-only-room-iPad-en-GB.png │ │ ├── securityAndPrivacyScreen.Private-invite-only-room-iPad-pseudo.png │ │ ├── securityAndPrivacyScreen.Private-invite-only-room-iPhone-16-en-GB.png │ │ ├── securityAndPrivacyScreen.Private-invite-only-room-iPhone-16-pseudo.png │ │ ├── securityAndPrivacyScreen.Public-room-iPad-en-GB.png │ │ ├── securityAndPrivacyScreen.Public-room-iPad-pseudo.png │ │ ├── securityAndPrivacyScreen.Public-room-iPhone-16-en-GB.png │ │ ├── securityAndPrivacyScreen.Public-room-iPhone-16-pseudo.png │ │ ├── securityAndPrivacyScreen.Public-room-without-address-iPad-en-GB.png │ │ ├── securityAndPrivacyScreen.Public-room-without-address-iPad-pseudo.png │ │ ├── securityAndPrivacyScreen.Public-room-without-address-iPhone-16-en-GB.png │ │ ├── securityAndPrivacyScreen.Public-room-without-address-iPhone-16-pseudo.png │ │ ├── securityAndPrivacyScreen.Restricted-room-iPad-en-GB.png │ │ ├── securityAndPrivacyScreen.Restricted-room-iPad-pseudo.png │ │ ├── securityAndPrivacyScreen.Restricted-room-iPhone-16-en-GB.png │ │ ├── securityAndPrivacyScreen.Restricted-room-iPhone-16-pseudo.png │ │ ├── sendInviteConfirmationView.iPad-en-GB-0.png │ │ ├── sendInviteConfirmationView.iPad-pseudo-0.png │ │ ├── sendInviteConfirmationView.iPhone-16-en-GB-0.png │ │ ├── sendInviteConfirmationView.iPhone-16-pseudo-0.png │ │ ├── separatorMediaEventsTimelineView.iPad-en-GB-0.png │ │ ├── separatorMediaEventsTimelineView.iPad-pseudo-0.png │ │ ├── separatorMediaEventsTimelineView.iPhone-16-en-GB-0.png │ │ ├── separatorMediaEventsTimelineView.iPhone-16-pseudo-0.png │ │ ├── separatorRoomTimelineView.iPad-en-GB-0.png │ │ ├── separatorRoomTimelineView.iPad-pseudo-0.png │ │ ├── separatorRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── separatorRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── serverConfirmationScreen.Login-iPad-en-GB.png │ │ ├── serverConfirmationScreen.Login-iPad-pseudo.png │ │ ├── serverConfirmationScreen.Login-iPhone-16-en-GB.png │ │ ├── serverConfirmationScreen.Login-iPhone-16-pseudo.png │ │ ├── serverConfirmationScreen.Picker-iPad-en-GB.png │ │ ├── serverConfirmationScreen.Picker-iPad-pseudo.png │ │ ├── serverConfirmationScreen.Picker-iPhone-16-en-GB.png │ │ ├── serverConfirmationScreen.Picker-iPhone-16-pseudo.png │ │ ├── serverConfirmationScreen.Register-iPad-en-GB.png │ │ ├── serverConfirmationScreen.Register-iPad-pseudo.png │ │ ├── serverConfirmationScreen.Register-iPhone-16-en-GB.png │ │ ├── serverConfirmationScreen.Register-iPhone-16-pseudo.png │ │ ├── serverSelection.iPad-en-GB-0.png │ │ ├── serverSelection.iPad-en-GB-1.png │ │ ├── serverSelection.iPad-en-GB-2.png │ │ ├── serverSelection.iPad-pseudo-0.png │ │ ├── serverSelection.iPad-pseudo-1.png │ │ ├── serverSelection.iPad-pseudo-2.png │ │ ├── serverSelection.iPhone-16-en-GB-0.png │ │ ├── serverSelection.iPhone-16-en-GB-1.png │ │ ├── serverSelection.iPhone-16-en-GB-2.png │ │ ├── serverSelection.iPhone-16-pseudo-0.png │ │ ├── serverSelection.iPhone-16-pseudo-1.png │ │ ├── serverSelection.iPhone-16-pseudo-2.png │ │ ├── sessionVerification.Accepting-Challenge-iPad-en-GB.png │ │ ├── sessionVerification.Accepting-Challenge-iPad-pseudo.png │ │ ├── sessionVerification.Accepting-Challenge-iPhone-16-en-GB.png │ │ ├── sessionVerification.Accepting-Challenge-iPhone-16-pseudo.png │ │ ├── sessionVerification.Accepting-Verification-Request-iPad-en-GB.png │ │ ├── sessionVerification.Accepting-Verification-Request-iPad-pseudo.png │ │ ├── sessionVerification.Accepting-Verification-Request-iPhone-16-en-GB.png │ │ ├── sessionVerification.Accepting-Verification-Request-iPhone-16-pseudo.png │ │ ├── sessionVerification.Cancelled-iPad-en-GB.png │ │ ├── sessionVerification.Cancelled-iPad-pseudo.png │ │ ├── sessionVerification.Cancelled-iPhone-16-en-GB.png │ │ ├── sessionVerification.Cancelled-iPhone-16-pseudo.png │ │ ├── sessionVerification.Declining-Challenge-iPad-en-GB.png │ │ ├── sessionVerification.Declining-Challenge-iPad-pseudo.png │ │ ├── sessionVerification.Declining-Challenge-iPhone-16-en-GB.png │ │ ├── sessionVerification.Declining-Challenge-iPhone-16-pseudo.png │ │ ├── sessionVerification.Initial-Device-Initiator-iPad-en-GB.png │ │ ├── sessionVerification.Initial-Device-Initiator-iPad-pseudo.png │ │ ├── sessionVerification.Initial-Device-Initiator-iPhone-16-en-GB.png │ │ ├── sessionVerification.Initial-Device-Initiator-iPhone-16-pseudo.png │ │ ├── sessionVerification.Initial-Device-Responder-iPad-en-GB.png │ │ ├── sessionVerification.Initial-Device-Responder-iPad-pseudo.png │ │ ├── sessionVerification.Initial-Device-Responder-iPhone-16-en-GB.png │ │ ├── sessionVerification.Initial-Device-Responder-iPhone-16-pseudo.png │ │ ├── sessionVerification.Initial-User-Initiator-iPad-en-GB.png │ │ ├── sessionVerification.Initial-User-Initiator-iPad-pseudo.png │ │ ├── sessionVerification.Initial-User-Initiator-iPhone-16-en-GB.png │ │ ├── sessionVerification.Initial-User-Initiator-iPhone-16-pseudo.png │ │ ├── sessionVerification.Initial-User-Responder-iPad-en-GB.png │ │ ├── sessionVerification.Initial-User-Responder-iPad-pseudo.png │ │ ├── sessionVerification.Initial-User-Responder-iPhone-16-en-GB.png │ │ ├── sessionVerification.Initial-User-Responder-iPhone-16-pseudo.png │ │ ├── sessionVerification.Request-Accepted-iPad-en-GB.png │ │ ├── sessionVerification.Request-Accepted-iPad-pseudo.png │ │ ├── sessionVerification.Request-Accepted-iPhone-16-en-GB.png │ │ ├── sessionVerification.Request-Accepted-iPhone-16-pseudo.png │ │ ├── sessionVerification.Requesting-Verification-iPad-en-GB.png │ │ ├── sessionVerification.Requesting-Verification-iPad-pseudo.png │ │ ├── sessionVerification.Requesting-Verification-iPhone-16-en-GB.png │ │ ├── sessionVerification.Requesting-Verification-iPhone-16-pseudo.png │ │ ├── sessionVerification.SAS-Verification-started-iPad-en-GB.png │ │ ├── sessionVerification.SAS-Verification-started-iPad-pseudo.png │ │ ├── sessionVerification.SAS-Verification-started-iPhone-16-en-GB.png │ │ ├── sessionVerification.SAS-Verification-started-iPhone-16-pseudo.png │ │ ├── sessionVerification.Showing-Challenge-iPad-en-GB.png │ │ ├── sessionVerification.Showing-Challenge-iPad-pseudo.png │ │ ├── sessionVerification.Showing-Challenge-iPhone-16-en-GB.png │ │ ├── sessionVerification.Showing-Challenge-iPhone-16-pseudo.png │ │ ├── sessionVerification.Starting-SAS-Verification-iPad-en-GB.png │ │ ├── sessionVerification.Starting-SAS-Verification-iPad-pseudo.png │ │ ├── sessionVerification.Starting-SAS-Verification-iPhone-16-en-GB.png │ │ ├── sessionVerification.Starting-SAS-Verification-iPhone-16-pseudo.png │ │ ├── sessionVerification.Verified-iPad-en-GB.png │ │ ├── sessionVerification.Verified-iPad-pseudo.png │ │ ├── sessionVerification.Verified-iPhone-16-en-GB.png │ │ ├── sessionVerification.Verified-iPhone-16-pseudo.png │ │ ├── sessionVerificationRequestDetailsView.Device-iPad-en-GB.png │ │ ├── sessionVerificationRequestDetailsView.Device-iPad-pseudo.png │ │ ├── sessionVerificationRequestDetailsView.Device-iPhone-16-en-GB.png │ │ ├── sessionVerificationRequestDetailsView.Device-iPhone-16-pseudo.png │ │ ├── sessionVerificationRequestDetailsView.User-iPad-en-GB.png │ │ ├── sessionVerificationRequestDetailsView.User-iPad-pseudo.png │ │ ├── sessionVerificationRequestDetailsView.User-iPhone-16-en-GB.png │ │ ├── sessionVerificationRequestDetailsView.User-iPhone-16-pseudo.png │ │ ├── settingsScreen.Bug-report-disabled-iPad-en-GB.png │ │ ├── settingsScreen.Bug-report-disabled-iPad-pseudo.png │ │ ├── settingsScreen.Bug-report-disabled-iPhone-16-en-GB.png │ │ ├── settingsScreen.Bug-report-disabled-iPhone-16-pseudo.png │ │ ├── settingsScreen.Default-iPad-en-GB.png │ │ ├── settingsScreen.Default-iPad-pseudo.png │ │ ├── settingsScreen.Default-iPhone-16-en-GB.png │ │ ├── settingsScreen.Default-iPhone-16-pseudo.png │ │ ├── shimmerOverlay.iPad-en-GB-0.png │ │ ├── shimmerOverlay.iPad-pseudo-0.png │ │ ├── shimmerOverlay.iPhone-16-en-GB-0.png │ │ ├── shimmerOverlay.iPhone-16-pseudo-0.png │ │ ├── softLogoutScreen.iPad-en-GB-0.png │ │ ├── softLogoutScreen.iPad-en-GB-1.png │ │ ├── softLogoutScreen.iPad-en-GB-2.png │ │ ├── softLogoutScreen.iPad-en-GB-3.png │ │ ├── softLogoutScreen.iPad-en-GB-4.png │ │ ├── softLogoutScreen.iPad-pseudo-0.png │ │ ├── softLogoutScreen.iPad-pseudo-1.png │ │ ├── softLogoutScreen.iPad-pseudo-2.png │ │ ├── softLogoutScreen.iPad-pseudo-3.png │ │ ├── softLogoutScreen.iPad-pseudo-4.png │ │ ├── softLogoutScreen.iPhone-16-en-GB-0.png │ │ ├── softLogoutScreen.iPhone-16-en-GB-1.png │ │ ├── softLogoutScreen.iPhone-16-en-GB-2.png │ │ ├── softLogoutScreen.iPhone-16-en-GB-3.png │ │ ├── softLogoutScreen.iPhone-16-en-GB-4.png │ │ ├── softLogoutScreen.iPhone-16-pseudo-0.png │ │ ├── softLogoutScreen.iPhone-16-pseudo-1.png │ │ ├── softLogoutScreen.iPhone-16-pseudo-2.png │ │ ├── softLogoutScreen.iPhone-16-pseudo-3.png │ │ ├── softLogoutScreen.iPhone-16-pseudo-4.png │ │ ├── splashScreen.iPad-en-GB-0.png │ │ ├── splashScreen.iPad-pseudo-0.png │ │ ├── splashScreen.iPhone-16-en-GB-0.png │ │ ├── splashScreen.iPhone-16-pseudo-0.png │ │ ├── stackedAvatarsView.iPad-en-GB-0.png │ │ ├── stackedAvatarsView.iPad-pseudo-0.png │ │ ├── stackedAvatarsView.iPhone-16-en-GB-0.png │ │ ├── stackedAvatarsView.iPhone-16-pseudo-0.png │ │ ├── startChatScreen.iPad-en-GB-0.png │ │ ├── startChatScreen.iPad-pseudo-0.png │ │ ├── startChatScreen.iPhone-16-en-GB-0.png │ │ ├── startChatScreen.iPhone-16-pseudo-0.png │ │ ├── stateRoomTimelineView.iPad-en-GB-0.png │ │ ├── stateRoomTimelineView.iPad-pseudo-0.png │ │ ├── stateRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── stateRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── staticLocationScreenViewer.Picker-iPad-en-GB.png │ │ ├── staticLocationScreenViewer.Picker-iPad-pseudo.png │ │ ├── staticLocationScreenViewer.Picker-iPhone-16-en-GB.png │ │ ├── staticLocationScreenViewer.Picker-iPhone-16-pseudo.png │ │ ├── staticLocationScreenViewer.View-Only-iPad-en-GB.png │ │ ├── staticLocationScreenViewer.View-Only-iPad-pseudo.png │ │ ├── staticLocationScreenViewer.View-Only-iPhone-16-en-GB.png │ │ ├── staticLocationScreenViewer.View-Only-iPhone-16-pseudo.png │ │ ├── staticLocationScreenViewer.View-Only-with-description-iPad-en-GB.png │ │ ├── staticLocationScreenViewer.View-Only-with-description-iPad-pseudo.png │ │ ├── staticLocationScreenViewer.View-Only-with-description-iPhone-16-en-GB.png │ │ ├── staticLocationScreenViewer.View-Only-with-description-iPhone-16-pseudo.png │ │ ├── stickerRoomTimelineView.iPad-en-GB-0.png │ │ ├── stickerRoomTimelineView.iPad-pseudo-0.png │ │ ├── stickerRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── stickerRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── swipeRightAction.iPad-en-GB-0.png │ │ ├── swipeRightAction.iPad-pseudo-0.png │ │ ├── swipeRightAction.iPhone-16-en-GB-0.png │ │ ├── swipeRightAction.iPhone-16-pseudo-0.png │ │ ├── swipeToReplyView.iPad-en-GB-0.png │ │ ├── swipeToReplyView.iPad-pseudo-0.png │ │ ├── swipeToReplyView.iPhone-16-en-GB-0.png │ │ ├── swipeToReplyView.iPhone-16-pseudo-0.png │ │ ├── textRoomTimelineView.Bubble-RTL-iPad-en-GB.png │ │ ├── textRoomTimelineView.Bubble-RTL-iPad-pseudo.png │ │ ├── textRoomTimelineView.Bubble-RTL-iPhone-16-en-GB.png │ │ ├── textRoomTimelineView.Bubble-RTL-iPhone-16-pseudo.png │ │ ├── textRoomTimelineView.Bubble-iPad-en-GB.png │ │ ├── textRoomTimelineView.Bubble-iPad-pseudo.png │ │ ├── textRoomTimelineView.Bubble-iPhone-16-en-GB.png │ │ ├── textRoomTimelineView.Bubble-iPhone-16-pseudo.png │ │ ├── threadDecorator.iPad-en-GB-0.png │ │ ├── threadDecorator.iPad-pseudo-0.png │ │ ├── threadDecorator.iPhone-16-en-GB-0.png │ │ ├── threadDecorator.iPhone-16-pseudo-0.png │ │ ├── timelineDeliveryStatusView.iPad-en-GB-0.png │ │ ├── timelineDeliveryStatusView.iPad-pseudo-0.png │ │ ├── timelineDeliveryStatusView.iPhone-16-en-GB-0.png │ │ ├── timelineDeliveryStatusView.iPhone-16-pseudo-0.png │ │ ├── timelineItemBubbledStylerView.Encryption-Indicators-iPad-en-GB.png │ │ ├── timelineItemBubbledStylerView.Encryption-Indicators-iPad-pseudo.png │ │ ├── timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-en-GB.png │ │ ├── timelineItemBubbledStylerView.Encryption-Indicators-iPhone-16-pseudo.png │ │ ├── timelineItemBubbledStylerView.Mock-Timeline-RTL-iPad-en-GB.png │ │ ├── timelineItemBubbledStylerView.Mock-Timeline-RTL-iPad-pseudo.png │ │ ├── timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-16-en-GB.png │ │ ├── timelineItemBubbledStylerView.Mock-Timeline-RTL-iPhone-16-pseudo.png │ │ ├── timelineItemBubbledStylerView.Mock-Timeline-iPad-en-GB.png │ │ ├── timelineItemBubbledStylerView.Mock-Timeline-iPad-pseudo.png │ │ ├── timelineItemBubbledStylerView.Mock-Timeline-iPhone-16-en-GB.png │ │ ├── timelineItemBubbledStylerView.Mock-Timeline-iPhone-16-pseudo.png │ │ ├── timelineItemBubbledStylerView.Pinned-messages-iPad-en-GB.png │ │ ├── timelineItemBubbledStylerView.Pinned-messages-iPad-pseudo.png │ │ ├── timelineItemBubbledStylerView.Pinned-messages-iPhone-16-en-GB.png │ │ ├── timelineItemBubbledStylerView.Pinned-messages-iPhone-16-pseudo.png │ │ ├── timelineItemBubbledStylerView.Replies-iPad-en-GB.png │ │ ├── timelineItemBubbledStylerView.Replies-iPad-pseudo.png │ │ ├── timelineItemBubbledStylerView.Replies-iPhone-16-en-GB.png │ │ ├── timelineItemBubbledStylerView.Replies-iPhone-16-pseudo.png │ │ ├── timelineItemBubbledStylerView.Thread-decorator-iPad-en-GB.png │ │ ├── timelineItemBubbledStylerView.Thread-decorator-iPad-pseudo.png │ │ ├── timelineItemBubbledStylerView.Thread-decorator-iPhone-16-en-GB.png │ │ ├── timelineItemBubbledStylerView.Thread-decorator-iPhone-16-pseudo.png │ │ ├── timelineItemBubbledStylerView.Thread-summary-iPad-en-GB.png │ │ ├── timelineItemBubbledStylerView.Thread-summary-iPad-pseudo.png │ │ ├── timelineItemBubbledStylerView.Thread-summary-iPhone-16-en-GB.png │ │ ├── timelineItemBubbledStylerView.Thread-summary-iPhone-16-pseudo.png │ │ ├── timelineItemDebugView.iPad-en-GB-0.png │ │ ├── timelineItemDebugView.iPad-pseudo-0.png │ │ ├── timelineItemDebugView.iPhone-16-en-GB-0.png │ │ ├── timelineItemDebugView.iPhone-16-pseudo-0.png │ │ ├── timelineItemMenu.Authenticity-iPad-en-GB.png │ │ ├── timelineItemMenu.Authenticity-iPad-pseudo.png │ │ ├── timelineItemMenu.Authenticity-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Authenticity-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Button-shapes-iPad-en-GB.png │ │ ├── timelineItemMenu.Button-shapes-iPad-pseudo.png │ │ ├── timelineItemMenu.Button-shapes-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Button-shapes-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Identity-Changed-iPad-en-GB.png │ │ ├── timelineItemMenu.Identity-Changed-iPad-pseudo.png │ │ ├── timelineItemMenu.Identity-Changed-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Identity-Changed-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Media-iPad-en-GB.png │ │ ├── timelineItemMenu.Media-iPad-pseudo.png │ │ ├── timelineItemMenu.Media-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Media-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Media-with-Caption-iPad-en-GB.png │ │ ├── timelineItemMenu.Media-with-Caption-iPad-pseudo.png │ │ ├── timelineItemMenu.Media-with-Caption-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Media-with-Caption-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Normal-iPad-en-GB.png │ │ ├── timelineItemMenu.Normal-iPad-pseudo.png │ │ ├── timelineItemMenu.Normal-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Normal-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Own-Unsigned-Devices-iPad-en-GB.png │ │ ├── timelineItemMenu.Own-Unsigned-Devices-iPad-pseudo.png │ │ ├── timelineItemMenu.Own-Unsigned-Devices-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Own-Unsigned-Devices-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Unencrypted-iPad-en-GB.png │ │ ├── timelineItemMenu.Unencrypted-iPad-pseudo.png │ │ ├── timelineItemMenu.Unencrypted-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Unencrypted-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Unknown-failure-iPad-en-GB.png │ │ ├── timelineItemMenu.Unknown-failure-iPad-pseudo.png │ │ ├── timelineItemMenu.Unknown-failure-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Unknown-failure-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Unsigned-Devices-iPad-en-GB.png │ │ ├── timelineItemMenu.Unsigned-Devices-iPad-pseudo.png │ │ ├── timelineItemMenu.Unsigned-Devices-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Unsigned-Devices-iPhone-16-pseudo.png │ │ ├── timelineItemMenu.Unsigned-iPad-en-GB.png │ │ ├── timelineItemMenu.Unsigned-iPad-pseudo.png │ │ ├── timelineItemMenu.Unsigned-iPhone-16-en-GB.png │ │ ├── timelineItemMenu.Unsigned-iPhone-16-pseudo.png │ │ ├── timelineItemSendInfoLabel.iPad-en-GB-0.png │ │ ├── timelineItemSendInfoLabel.iPad-pseudo-0.png │ │ ├── timelineItemSendInfoLabel.iPhone-16-en-GB-0.png │ │ ├── timelineItemSendInfoLabel.iPhone-16-pseudo-0.png │ │ ├── timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPad-en-GB.png │ │ ├── timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPad-pseudo.png │ │ ├── timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-16-en-GB.png │ │ ├── timelineItemStyler.Bubbles-LTR-with-different-layout-languages-iPhone-16-pseudo.png │ │ ├── timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPad-en-GB.png │ │ ├── timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPad-pseudo.png │ │ ├── timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-16-en-GB.png │ │ ├── timelineItemStyler.Bubbles-RTL-with-different-layout-languages-iPhone-16-pseudo.png │ │ ├── timelineItemStyler.Bubbles-iPad-en-GB.png │ │ ├── timelineItemStyler.Bubbles-iPad-pseudo.png │ │ ├── timelineItemStyler.Bubbles-iPhone-16-en-GB.png │ │ ├── timelineItemStyler.Bubbles-iPhone-16-pseudo.png │ │ ├── timelineMediaPreviewDetailsView.Image-iPad-en-GB.png │ │ ├── timelineMediaPreviewDetailsView.Image-iPad-pseudo.png │ │ ├── timelineMediaPreviewDetailsView.Image-iPhone-16-en-GB.png │ │ ├── timelineMediaPreviewDetailsView.Image-iPhone-16-pseudo.png │ │ ├── timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-en-GB.png │ │ ├── timelineMediaPreviewDetailsView.Incoming-on-Room-iPad-pseudo.png │ │ ├── timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-en-GB.png │ │ ├── timelineMediaPreviewDetailsView.Incoming-on-Room-iPhone-16-pseudo.png │ │ ├── timelineMediaPreviewDetailsView.Loading-iPad-en-GB.png │ │ ├── timelineMediaPreviewDetailsView.Loading-iPad-pseudo.png │ │ ├── timelineMediaPreviewDetailsView.Loading-iPhone-16-en-GB.png │ │ ├── timelineMediaPreviewDetailsView.Loading-iPhone-16-pseudo.png │ │ ├── timelineMediaPreviewDetailsView.Unknown-type-iPad-en-GB.png │ │ ├── timelineMediaPreviewDetailsView.Unknown-type-iPad-pseudo.png │ │ ├── timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-en-GB.png │ │ ├── timelineMediaPreviewDetailsView.Unknown-type-iPhone-16-pseudo.png │ │ ├── timelineMediaPreviewRedactConfirmationView.iPad-en-GB-0.png │ │ ├── timelineMediaPreviewRedactConfirmationView.iPad-pseudo-0.png │ │ ├── timelineMediaPreviewRedactConfirmationView.iPhone-16-en-GB-0.png │ │ ├── timelineMediaPreviewRedactConfirmationView.iPhone-16-pseudo-0.png │ │ ├── timelineReactionView.iPad-en-GB-0.png │ │ ├── timelineReactionView.iPad-pseudo-0.png │ │ ├── timelineReactionView.iPhone-16-en-GB-0.png │ │ ├── timelineReactionView.iPhone-16-pseudo-0.png │ │ ├── timelineReadReceiptsView.iPad-en-GB-0.png │ │ ├── timelineReadReceiptsView.iPad-pseudo-0.png │ │ ├── timelineReadReceiptsView.iPhone-16-en-GB-0.png │ │ ├── timelineReadReceiptsView.iPhone-16-pseudo-0.png │ │ ├── timelineReplyView.iPad-en-GB-0.png │ │ ├── timelineReplyView.iPad-pseudo-0.png │ │ ├── timelineReplyView.iPhone-16-en-GB-0.png │ │ ├── timelineReplyView.iPhone-16-pseudo-0.png │ │ ├── timelineStartRoomTimelineView.iPad-en-GB-0.png │ │ ├── timelineStartRoomTimelineView.iPad-pseudo-0.png │ │ ├── timelineStartRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── timelineStartRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── timelineStartRoomTimelineView.with-predecessor-iPad-en-GB.png │ │ ├── timelineStartRoomTimelineView.with-predecessor-iPad-pseudo.png │ │ ├── timelineStartRoomTimelineView.with-predecessor-iPhone-16-en-GB.png │ │ ├── timelineStartRoomTimelineView.with-predecessor-iPhone-16-pseudo.png │ │ ├── timelineThreadSummaryView.iPad-en-GB-0.png │ │ ├── timelineThreadSummaryView.iPad-pseudo-0.png │ │ ├── timelineThreadSummaryView.iPhone-16-en-GB-0.png │ │ ├── timelineThreadSummaryView.iPhone-16-pseudo-0.png │ │ ├── timelineView.iPad-en-GB-0.png │ │ ├── timelineView.iPad-pseudo-0.png │ │ ├── timelineView.iPhone-16-en-GB-0.png │ │ ├── timelineView.iPhone-16-pseudo-0.png │ │ ├── tombstonedAvatarImage.iPad-en-GB-0.png │ │ ├── tombstonedAvatarImage.iPad-pseudo-0.png │ │ ├── tombstonedAvatarImage.iPhone-16-en-GB-0.png │ │ ├── tombstonedAvatarImage.iPhone-16-pseudo-0.png │ │ ├── typingIndicatorView.iPad-en-GB-0.png │ │ ├── typingIndicatorView.iPad-pseudo-0.png │ │ ├── typingIndicatorView.iPhone-16-en-GB-0.png │ │ ├── typingIndicatorView.iPhone-16-pseudo-0.png │ │ ├── unsupportedRoomTimelineView.iPad-en-GB-0.png │ │ ├── unsupportedRoomTimelineView.iPad-pseudo-0.png │ │ ├── unsupportedRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── unsupportedRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── userDetailsEditScreen.iPad-en-GB-0.png │ │ ├── userDetailsEditScreen.iPad-pseudo-0.png │ │ ├── userDetailsEditScreen.iPhone-16-en-GB-0.png │ │ ├── userDetailsEditScreen.iPhone-16-pseudo-0.png │ │ ├── userIndicatorModalView.No-progress-iPad-en-GB.png │ │ ├── userIndicatorModalView.No-progress-iPad-pseudo.png │ │ ├── userIndicatorModalView.No-progress-iPhone-16-en-GB.png │ │ ├── userIndicatorModalView.No-progress-iPhone-16-pseudo.png │ │ ├── userIndicatorModalView.Progress-Bar-iPad-en-GB.png │ │ ├── userIndicatorModalView.Progress-Bar-iPad-pseudo.png │ │ ├── userIndicatorModalView.Progress-Bar-iPhone-16-en-GB.png │ │ ├── userIndicatorModalView.Progress-Bar-iPhone-16-pseudo.png │ │ ├── userIndicatorModalView.Spinner-iPad-en-GB.png │ │ ├── userIndicatorModalView.Spinner-iPad-pseudo.png │ │ ├── userIndicatorModalView.Spinner-iPhone-16-en-GB.png │ │ ├── userIndicatorModalView.Spinner-iPhone-16-pseudo.png │ │ ├── userIndicatorToastView.iPad-en-GB-0.png │ │ ├── userIndicatorToastView.iPad-pseudo-0.png │ │ ├── userIndicatorToastView.iPhone-16-en-GB-0.png │ │ ├── userIndicatorToastView.iPhone-16-pseudo-0.png │ │ ├── userProfileCell.iPad-en-GB-0.png │ │ ├── userProfileCell.iPad-pseudo-0.png │ │ ├── userProfileCell.iPhone-16-en-GB-0.png │ │ ├── userProfileCell.iPhone-16-pseudo-0.png │ │ ├── userProfileScreen.Account-Owner-iPad-en-GB.png │ │ ├── userProfileScreen.Account-Owner-iPad-pseudo.png │ │ ├── userProfileScreen.Account-Owner-iPhone-16-en-GB.png │ │ ├── userProfileScreen.Account-Owner-iPhone-16-pseudo.png │ │ ├── userProfileScreen.Other-User-iPad-en-GB.png │ │ ├── userProfileScreen.Other-User-iPad-pseudo.png │ │ ├── userProfileScreen.Other-User-iPhone-16-en-GB.png │ │ ├── userProfileScreen.Other-User-iPhone-16-pseudo.png │ │ ├── userProfileScreen.Verified-User-iPad-en-GB.png │ │ ├── userProfileScreen.Verified-User-iPad-pseudo.png │ │ ├── userProfileScreen.Verified-User-iPhone-16-en-GB.png │ │ ├── userProfileScreen.Verified-User-iPhone-16-pseudo.png │ │ ├── verificationBadge.iPad-en-GB-0.png │ │ ├── verificationBadge.iPad-pseudo-0.png │ │ ├── verificationBadge.iPhone-16-en-GB-0.png │ │ ├── verificationBadge.iPhone-16-pseudo-0.png │ │ ├── videoMediaEventsTimelineView.iPad-en-GB-0.png │ │ ├── videoMediaEventsTimelineView.iPad-pseudo-0.png │ │ ├── videoMediaEventsTimelineView.iPhone-16-en-GB-0.png │ │ ├── videoMediaEventsTimelineView.iPhone-16-pseudo-0.png │ │ ├── videoRoomTimelineView.iPad-en-GB-0.png │ │ ├── videoRoomTimelineView.iPad-pseudo-0.png │ │ ├── videoRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── videoRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── visualListItem.iPad-en-GB-0.png │ │ ├── visualListItem.iPad-pseudo-0.png │ │ ├── visualListItem.iPhone-16-en-GB-0.png │ │ ├── visualListItem.iPhone-16-pseudo-0.png │ │ ├── voiceMessageButton.iPad-en-GB-0.png │ │ ├── voiceMessageButton.iPad-pseudo-0.png │ │ ├── voiceMessageButton.iPhone-16-en-GB-0.png │ │ ├── voiceMessageButton.iPhone-16-pseudo-0.png │ │ ├── voiceMessageMediaEventsTimelineView.iPad-en-GB-0.png │ │ ├── voiceMessageMediaEventsTimelineView.iPad-pseudo-0.png │ │ ├── voiceMessageMediaEventsTimelineView.iPhone-16-en-GB-0.png │ │ ├── voiceMessageMediaEventsTimelineView.iPhone-16-pseudo-0.png │ │ ├── voiceMessagePreviewComposer.iPad-en-GB-0.png │ │ ├── voiceMessagePreviewComposer.iPad-pseudo-0.png │ │ ├── voiceMessagePreviewComposer.iPhone-16-en-GB-0.png │ │ ├── voiceMessagePreviewComposer.iPhone-16-pseudo-0.png │ │ ├── voiceMessageRecordingButton.iPad-en-GB-0.png │ │ ├── voiceMessageRecordingButton.iPad-pseudo-0.png │ │ ├── voiceMessageRecordingButton.iPhone-16-en-GB-0.png │ │ ├── voiceMessageRecordingButton.iPhone-16-pseudo-0.png │ │ ├── voiceMessageRecordingComposer.iPad-en-GB-0.png │ │ ├── voiceMessageRecordingComposer.iPad-pseudo-0.png │ │ ├── voiceMessageRecordingComposer.iPhone-16-en-GB-0.png │ │ ├── voiceMessageRecordingComposer.iPhone-16-pseudo-0.png │ │ ├── voiceMessageRecordingView.iPad-en-GB-0.png │ │ ├── voiceMessageRecordingView.iPad-pseudo-0.png │ │ ├── voiceMessageRecordingView.iPhone-16-en-GB-0.png │ │ ├── voiceMessageRecordingView.iPhone-16-pseudo-0.png │ │ ├── voiceMessageRoomPlaybackView.iPad-en-GB-0.png │ │ ├── voiceMessageRoomPlaybackView.iPad-pseudo-0.png │ │ ├── voiceMessageRoomPlaybackView.iPhone-16-en-GB-0.png │ │ ├── voiceMessageRoomPlaybackView.iPhone-16-pseudo-0.png │ │ ├── voiceMessageRoomTimelineView.iPad-en-GB-0.png │ │ ├── voiceMessageRoomTimelineView.iPad-pseudo-0.png │ │ ├── voiceMessageRoomTimelineView.iPhone-16-en-GB-0.png │ │ ├── voiceMessageRoomTimelineView.iPhone-16-pseudo-0.png │ │ ├── waveformCursorView.iPad-en-GB-0.png │ │ ├── waveformCursorView.iPad-pseudo-0.png │ │ ├── waveformCursorView.iPhone-16-en-GB-0.png │ │ └── waveformCursorView.iPhone-16-pseudo-0.png └── SupportingFiles │ ├── Info.plist │ ├── PreviewTests.xctestplan │ └── target.yml ├── README.md ├── SECURITY.md ├── Secrets ├── Secrets.pkl ├── Secrets.swift └── vendor │ └── package-2 │ └── pkg.pkl-lang.org │ └── github.com │ └── element-hq │ └── pkl-tools │ └── staticcode@1.0.1 │ ├── staticcode@1.0.1.json │ └── staticcode@1.0.1.zip ├── ShareExtension ├── Sources │ ├── ShareExtensionViewController.swift │ └── View │ │ └── ShareExtensionView.swift └── SupportingFiles │ ├── Info.plist │ ├── ShareExtension.entitlements │ └── target.yml ├── Tools ├── Scripts │ ├── README.md │ ├── Templates │ │ └── SimpleScreenExample │ │ │ ├── ElementX │ │ │ ├── TemplateScreenCoordinator.swift │ │ │ ├── TemplateScreenModels.swift │ │ │ ├── TemplateScreenViewModel.swift │ │ │ ├── TemplateScreenViewModelProtocol.swift │ │ │ └── View │ │ │ │ └── TemplateScreen.swift │ │ │ └── Tests │ │ │ └── Unit │ │ │ └── TemplateScreenViewModelTests.swift │ ├── createScreen.sh │ └── validate_lfs.sh ├── Sourcery │ ├── AutoMockable.stencil │ ├── AutoMockableConfig.yml │ ├── PreviewTests.stencil │ ├── PreviewTestsConfig.yml │ └── SDKAutoMockable.stencil ├── Sources │ ├── Commands │ │ ├── AppIconBanner.swift │ │ ├── BuildSDK.swift │ │ ├── BumpCalendarVersion.swift │ │ ├── DownloadStrings.swift │ │ ├── GenerateSAS.swift │ │ ├── GenerateSDKMocks.swift │ │ ├── Locheck.swift │ │ ├── OutdatedPackages.swift │ │ ├── SetupProject.swift │ │ └── UnusedStrings.swift │ ├── Extensions │ │ └── URL.swift │ └── Tools.swift ├── SwiftGen │ ├── Templates │ │ ├── Plists │ │ │ └── runtime-swift5-element-info.stencil │ │ └── Strings │ │ │ ├── structured-swift5-element-untranslated.stencil │ │ │ └── structured-swift5-element.stencil │ └── swiftgen-config.yml └── XcodeGen │ ├── IDETemplateMacros.plist │ └── postGenCommand.sh ├── UITests ├── Sources │ ├── AppLockSetupTests.swift │ ├── AppLockTests.swift │ ├── Application.swift │ ├── AuthenticationFlowCoordinatorTests.swift │ ├── BugReportUITests.swift │ ├── CreateRoomScreenTests.swift │ ├── EncryptionResetTests.swift │ ├── EncryptionSettingsTests.swift │ ├── PollFormScreenTests.swift │ ├── RoomMembersListScreenTests.swift │ ├── RoomRolesAndPermissionsTests.swift │ ├── RoomScreenTests.swift │ ├── ServerSelectionTests.swift │ ├── SessionVerificationTests.swift │ ├── StartChatScreenTests.swift │ ├── UserSessionScreenTests.swift │ └── __Snapshots__ │ │ └── Application │ │ ├── appLock.testFlowDisabled-iPad-18-4-en-GB-99.png │ │ ├── appLock.testFlowDisabled-iPhone-18-4-en-GB-99.png │ │ ├── appLock.testFlowEnabled-iPad-18-4-en-GB-0.png │ │ ├── appLock.testFlowEnabled-iPad-18-4-en-GB-1.png │ │ ├── appLock.testFlowEnabled-iPad-18-4-en-GB-99.png │ │ ├── appLock.testFlowEnabled-iPhone-18-4-en-GB-0.png │ │ ├── appLock.testFlowEnabled-iPhone-18-4-en-GB-1.png │ │ ├── appLock.testFlowEnabled-iPhone-18-4-en-GB-99.png │ │ ├── appLock.testResignActive-iPad-18-4-en-GB-0.png │ │ ├── appLock.testResignActive-iPad-18-4-en-GB-99.png │ │ ├── appLock.testResignActive-iPhone-18-4-en-GB-0.png │ │ ├── appLock.testResignActive-iPhone-18-4-en-GB-99.png │ │ ├── appLock.testWrongPIN-iPad-18-4-en-GB-1.png │ │ ├── appLock.testWrongPIN-iPad-18-4-en-GB-2.png │ │ ├── appLock.testWrongPIN-iPad-18-4-en-GB-3.png │ │ ├── appLock.testWrongPIN-iPad-18-4-en-GB-4.png │ │ ├── appLock.testWrongPIN-iPad-18-4-en-GB-99.png │ │ ├── appLock.testWrongPIN-iPhone-18-4-en-GB-1.png │ │ ├── appLock.testWrongPIN-iPhone-18-4-en-GB-2.png │ │ ├── appLock.testWrongPIN-iPhone-18-4-en-GB-3.png │ │ ├── appLock.testWrongPIN-iPhone-18-4-en-GB-4.png │ │ ├── appLock.testWrongPIN-iPhone-18-4-en-GB-99.png │ │ ├── appLockSetup.testCancel-iPad-18-4-en-GB-99.png │ │ ├── appLockSetup.testCancel-iPad-18-4-en-GB.png │ │ ├── appLockSetup.testCancel-iPhone-18-4-en-GB-99.png │ │ ├── appLockSetup.testCancel-iPhone-18-4-en-GB.png │ │ ├── appLockSetup.testCreateFlow-iPad-18-4-en-GB-0.png │ │ ├── appLockSetup.testCreateFlow-iPad-18-4-en-GB-1.png │ │ ├── appLockSetup.testCreateFlow-iPad-18-4-en-GB-2.png │ │ ├── appLockSetup.testCreateFlow-iPad-18-4-en-GB-3.png │ │ ├── appLockSetup.testCreateFlow-iPad-18-4-en-GB-4.png │ │ ├── appLockSetup.testCreateFlow-iPad-18-4-en-GB-5.png │ │ ├── appLockSetup.testCreateFlow-iPad-18-4-en-GB-99.png │ │ ├── appLockSetup.testCreateFlow-iPhone-18-4-en-GB-0.png │ │ ├── appLockSetup.testCreateFlow-iPhone-18-4-en-GB-1.png │ │ ├── appLockSetup.testCreateFlow-iPhone-18-4-en-GB-2.png │ │ ├── appLockSetup.testCreateFlow-iPhone-18-4-en-GB-3.png │ │ ├── appLockSetup.testCreateFlow-iPhone-18-4-en-GB-99.png │ │ ├── appLockSetup.testMandatoryCreateFlow-iPad-18-4-en-GB-0.png │ │ ├── appLockSetup.testMandatoryCreateFlow-iPad-18-4-en-GB-1.png │ │ ├── appLockSetup.testMandatoryCreateFlow-iPad-18-4-en-GB-2.png │ │ ├── appLockSetup.testMandatoryCreateFlow-iPhone-18-4-en-GB-0.png │ │ ├── appLockSetup.testMandatoryCreateFlow-iPhone-18-4-en-GB-1.png │ │ ├── appLockSetup.testMandatoryCreateFlow-iPhone-18-4-en-GB-2.png │ │ ├── appLockSetup.testUnlockFlow-iPad-18-4-en-GB-3.png │ │ ├── appLockSetup.testUnlockFlow-iPad-18-4-en-GB-99.png │ │ ├── appLockSetup.testUnlockFlow-iPad-18-4-en-GB.png │ │ ├── appLockSetup.testUnlockFlow-iPhone-18-4-en-GB-3.png │ │ ├── appLockSetup.testUnlockFlow-iPhone-18-4-en-GB-99.png │ │ ├── appLockSetup.testUnlockFlow-iPhone-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testLoginWithPassword-iPad-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testLoginWithPassword-iPhone-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPad-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testLoginWithUnsupportedUserID-iPhone-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPad-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testMultipleProvidersLoginWithPassword-iPhone-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPad-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testProvisionedLoginWithPassword-iPhone-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPad-18-4-en-GB.png │ │ ├── authenticationFlowCoordinator.testSingleProviderLoginWithPassword-iPhone-18-4-en-GB.png │ │ ├── bugReport.testInitialStateComponents-iPad-18-4-en-GB.png │ │ ├── bugReport.testInitialStateComponents-iPhone-18-4-en-GB.png │ │ ├── bugReport.testReportText-iPad-18-4-en-GB.png │ │ ├── bugReport.testReportText-iPhone-18-4-en-GB.png │ │ ├── createRoomScreen.testLanding-iPad-18-4-en-GB.png │ │ ├── createRoomScreen.testLanding-iPhone-18-4-en-GB.png │ │ ├── createRoomScreen.testLandingWithoutUsers-iPad-18-4-en-GB.png │ │ ├── createRoomScreen.testLandingWithoutUsers-iPhone-18-4-en-GB.png │ │ ├── createRoomScreen.testLongInputNameText-iPad-18-4-en-GB.png │ │ ├── createRoomScreen.testLongInputNameText-iPhone-18-4-en-GB.png │ │ ├── encryptionReset.testPasswordFlow-iPad-18-4-en-GB-0.png │ │ ├── encryptionReset.testPasswordFlow-iPad-18-4-en-GB-1.png │ │ ├── encryptionReset.testPasswordFlow-iPad-18-4-en-GB-2.png │ │ ├── encryptionReset.testPasswordFlow-iPhone-18-4-en-GB-0.png │ │ ├── encryptionReset.testPasswordFlow-iPhone-18-4-en-GB-1.png │ │ ├── encryptionReset.testPasswordFlow-iPhone-18-4-en-GB-2.png │ │ ├── encryptionSettings.testFlow-iPad-18-4-en-GB-0.png │ │ ├── encryptionSettings.testFlow-iPad-18-4-en-GB-1.png │ │ ├── encryptionSettings.testFlow-iPad-18-4-en-GB-2.png │ │ ├── encryptionSettings.testFlow-iPad-18-4-en-GB-3.png │ │ ├── encryptionSettings.testFlow-iPad-18-4-en-GB-4.png │ │ ├── encryptionSettings.testFlow-iPhone-18-4-en-GB-0.png │ │ ├── encryptionSettings.testFlow-iPhone-18-4-en-GB-1.png │ │ ├── encryptionSettings.testFlow-iPhone-18-4-en-GB-2.png │ │ ├── encryptionSettings.testFlow-iPhone-18-4-en-GB-3.png │ │ ├── encryptionSettings.testFlow-iPhone-18-4-en-GB-4.png │ │ ├── encryptionSettings.testOutOfSyncFlow-iPad-18-4-en-GB-0.png │ │ ├── encryptionSettings.testOutOfSyncFlow-iPad-18-4-en-GB-5.png │ │ ├── encryptionSettings.testOutOfSyncFlow-iPad-18-4-en-GB-6.png │ │ ├── encryptionSettings.testOutOfSyncFlow-iPhone-18-4-en-GB-0.png │ │ ├── encryptionSettings.testOutOfSyncFlow-iPhone-18-4-en-GB-5.png │ │ ├── encryptionSettings.testOutOfSyncFlow-iPhone-18-4-en-GB-6.png │ │ ├── pollFormScreen.testEmptyScreen-iPad-18-4-en-GB.png │ │ ├── pollFormScreen.testEmptyScreen-iPhone-18-4-en-GB.png │ │ ├── pollFormScreen.testFilledPoll-iPad-18-4-en-GB.png │ │ ├── pollFormScreen.testFilledPoll-iPhone-18-4-en-GB.png │ │ ├── pollFormScreen.testMaxOptions-iPad-18-4-en-GB.png │ │ ├── pollFormScreen.testMaxOptions-iPhone-18-4-en-GB.png │ │ ├── roomMembersListScreen.testJoinedAndInvitedMembers-iPad-18-4-en-GB.png │ │ ├── roomMembersListScreen.testJoinedAndInvitedMembers-iPhone-18-4-en-GB.png │ │ ├── roomMembersListScreen.testSearchInvitedMember-iPad-18-4-en-GB.png │ │ ├── roomMembersListScreen.testSearchInvitedMember-iPhone-18-4-en-GB.png │ │ ├── roomMembersListScreen.testSearchJoinedMember-iPad-18-4-en-GB.png │ │ ├── roomMembersListScreen.testSearchJoinedMember-iPhone-18-4-en-GB.png │ │ ├── roomRolesAndPermissions.testFlow-iPad-18-4-en-GB-0.png │ │ ├── roomRolesAndPermissions.testFlow-iPad-18-4-en-GB-1.png │ │ ├── roomRolesAndPermissions.testFlow-iPad-18-4-en-GB-2.png │ │ ├── roomRolesAndPermissions.testFlow-iPad-18-4-en-GB-3.png │ │ ├── roomRolesAndPermissions.testFlow-iPad-18-4-en-GB-4.png │ │ ├── roomRolesAndPermissions.testFlow-iPad-18-4-en-GB-5.png │ │ ├── roomRolesAndPermissions.testFlow-iPhone-18-4-en-GB-0.png │ │ ├── roomRolesAndPermissions.testFlow-iPhone-18-4-en-GB-1.png │ │ ├── roomRolesAndPermissions.testFlow-iPhone-18-4-en-GB-2.png │ │ ├── roomRolesAndPermissions.testFlow-iPhone-18-4-en-GB-3.png │ │ ├── roomRolesAndPermissions.testFlow-iPhone-18-4-en-GB-4.png │ │ ├── roomRolesAndPermissions.testFlow-iPhone-18-4-en-GB-5.png │ │ ├── roomScreen.testPlainNoAvatar-iPad-18-4-en-GB.png │ │ ├── roomScreen.testPlainNoAvatar-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testSmallTimelineLayout-iPad-18-4-en-GB.png │ │ ├── roomScreen.testSmallTimelineLayout-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testSmallTimelineWithIncomingAndPagination-iPad-18-4-en-GB.png │ │ ├── roomScreen.testSmallTimelineWithIncomingAndPagination-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testSmallTimelineWithLargePagination-iPad-18-4-en-GB.png │ │ ├── roomScreen.testSmallTimelineWithLargePagination-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testTimelineDisclosedPolls-iPad-18-4-en-GB.png │ │ ├── roomScreen.testTimelineDisclosedPolls-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testTimelineLayoutAtBottom-iPad-18-4-en-GB-0.png │ │ ├── roomScreen.testTimelineLayoutAtBottom-iPad-18-4-en-GB-1.png │ │ ├── roomScreen.testTimelineLayoutAtBottom-iPhone-18-4-en-GB-0.png │ │ ├── roomScreen.testTimelineLayoutAtBottom-iPhone-18-4-en-GB-1.png │ │ ├── roomScreen.testTimelineLayoutAtTop-iPad-18-4-en-GB.png │ │ ├── roomScreen.testTimelineLayoutAtTop-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testTimelineLayoutHighlightExisting-iPad-18-4-en-GB.png │ │ ├── roomScreen.testTimelineLayoutHighlightExisting-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testTimelineOutgoingPolls-iPad-18-4-en-GB.png │ │ ├── roomScreen.testTimelineOutgoingPolls-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testTimelineReadReceipts-iPad-18-4-en-GB.png │ │ ├── roomScreen.testTimelineReadReceipts-iPhone-18-4-en-GB.png │ │ ├── roomScreen.testTimelineUndisclosedPolls-iPad-18-4-en-GB.png │ │ ├── roomScreen.testTimelineUndisclosedPolls-iPhone-18-4-en-GB.png │ │ ├── serverSelection.testEmptyAddress-iPad-18-4-en-GB.png │ │ ├── serverSelection.testEmptyAddress-iPhone-18-4-en-GB.png │ │ ├── serverSelection.testInvalidAddress-iPad-18-4-en-GB.png │ │ ├── serverSelection.testInvalidAddress-iPhone-18-4-en-GB.png │ │ ├── serverSelection.testNormalState-iPad-18-4-en-GB.png │ │ ├── serverSelection.testNormalState-iPhone-18-4-en-GB.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPad-18-4-en-GB-0.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPad-18-4-en-GB-1.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPad-18-4-en-GB-2.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPad-18-4-en-GB-3.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPad-18-4-en-GB-4.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPad-18-4-en-GB-7.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPhone-18-4-en-GB-0.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPhone-18-4-en-GB-1.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPhone-18-4-en-GB-2.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPhone-18-4-en-GB-3.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPhone-18-4-en-GB-4.png │ │ ├── sessionVerification.testChallengeDoesNotMatch-iPhone-18-4-en-GB-7.png │ │ ├── sessionVerification.testChallengeMatches-iPad-18-4-en-GB-0.png │ │ ├── sessionVerification.testChallengeMatches-iPad-18-4-en-GB-1.png │ │ ├── sessionVerification.testChallengeMatches-iPad-18-4-en-GB-2.png │ │ ├── sessionVerification.testChallengeMatches-iPad-18-4-en-GB-3.png │ │ ├── sessionVerification.testChallengeMatches-iPad-18-4-en-GB-4.png │ │ ├── sessionVerification.testChallengeMatches-iPad-18-4-en-GB-5.png │ │ ├── sessionVerification.testChallengeMatches-iPad-18-4-en-GB-6.png │ │ ├── sessionVerification.testChallengeMatches-iPhone-18-4-en-GB-0.png │ │ ├── sessionVerification.testChallengeMatches-iPhone-18-4-en-GB-1.png │ │ ├── sessionVerification.testChallengeMatches-iPhone-18-4-en-GB-2.png │ │ ├── sessionVerification.testChallengeMatches-iPhone-18-4-en-GB-3.png │ │ ├── sessionVerification.testChallengeMatches-iPhone-18-4-en-GB-4.png │ │ ├── sessionVerification.testChallengeMatches-iPhone-18-4-en-GB-5.png │ │ ├── sessionVerification.testChallengeMatches-iPhone-18-4-en-GB-6.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPad-18-4-en-GB-0.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPad-18-4-en-GB-1.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPad-18-4-en-GB-2.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPad-18-4-en-GB-3.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPad-18-4-en-GB-4.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPhone-18-4-en-GB-0.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPhone-18-4-en-GB-1.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPhone-18-4-en-GB-2.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPhone-18-4-en-GB-3.png │ │ ├── sessionVerification.testSessionVerificationCancelation-iPhone-18-4-en-GB-4.png │ │ ├── startChatScreen.testLanding-iPad-18-4-en-GB.png │ │ ├── startChatScreen.testLanding-iPhone-18-4-en-GB.png │ │ ├── startChatScreen.testSearchWithNoResults-iPad-18-4-en-GB.png │ │ ├── startChatScreen.testSearchWithNoResults-iPhone-18-4-en-GB.png │ │ ├── startChatScreen.testSearchWithResults-iPad-18-4-en-GB.png │ │ ├── startChatScreen.testSearchWithResults-iPhone-18-4-en-GB.png │ │ ├── userSessionScreen.testUserSessionFlows-iPad-18-4-en-GB-1.png │ │ ├── userSessionScreen.testUserSessionFlows-iPad-18-4-en-GB-2.png │ │ ├── userSessionScreen.testUserSessionFlows-iPad-18-4-en-GB-3.png │ │ ├── userSessionScreen.testUserSessionFlows-iPhone-18-4-en-GB-1.png │ │ ├── userSessionScreen.testUserSessionFlows-iPhone-18-4-en-GB-2.png │ │ ├── userSessionScreen.testUserSessionFlows-iPhone-18-4-en-GB-3.png │ │ ├── userSessionScreen.testUserSessionReply-iPad-18-4-en-GB.png │ │ └── userSessionScreen.testUserSessionReply-iPhone-18-4-en-GB.png └── SupportingFiles │ ├── Info.plist │ ├── UITests.xctestplan │ └── target.yml ├── UnitTests ├── Sources │ ├── AVMetadataMachineReadableCodeObjectExtensionsTest.swift │ ├── AnalyticsSettingsScreenViewModelTests.swift │ ├── AnalyticsTests.swift │ ├── AppLock │ │ ├── AppLockScreenViewModelTests.swift │ │ ├── AppLockServiceTests.swift │ │ ├── AppLockSettingsScreenViewModelTests.swift │ │ ├── AppLockSetupBiometricsScreenViewModelTests.swift │ │ ├── AppLockSetupPINScreenViewModelTests.swift │ │ ├── AppLockTimerTests.swift │ │ └── PINTextFieldTests.swift │ ├── AppRouteURLParserTests.swift │ ├── ArrayTests.swift │ ├── AttributedStringBuilderTests.swift │ ├── AttributedStringTests.swift │ ├── AudioPlayerStateTests.swift │ ├── AudioRecorderStateTests.swift │ ├── AudioRecorderTests.swift │ ├── AuthenticationServiceTests.swift │ ├── AuthenticationStartScreenViewModelTests.swift │ ├── BlockedUsersScreenViewModelTests.swift │ ├── BugReportScreenViewModelTests.swift │ ├── BugReportServiceTests.swift │ ├── CallScreenViewModelTests.swift │ ├── CompletionSuggestionServiceTests.swift │ ├── ComposerToolbarViewModelTests.swift │ ├── CreateRoomViewModelTests.swift │ ├── DateTests.swift │ ├── DeactivateAccountScreenViewModelTests.swift │ ├── DeclineAndBlockScreenViewModelTests.swift │ ├── DeferredFulfillmentTests.swift │ ├── DeveloperOptionsScreenViewModelTests.swift │ ├── EditRoomAddressScreenViewModelTests.swift │ ├── EmojiProviderTests.swift │ ├── ExpiringTaskRunnerTests.swift │ ├── GeoURITests.swift │ ├── GlobalSearchScreenViewModelTests.swift │ ├── HomeScreenRoomTests.swift │ ├── HomeScreenViewModelTests.swift │ ├── InviteUsersViewModelTests.swift │ ├── JoinRoomScreenViewModelTests.swift │ ├── KeychainControllerTests.swift │ ├── KnockRequestsListScreenViewModelTests.swift │ ├── LayoutTests │ │ ├── CollapsibleFlowLayoutTests.swift │ │ └── LayoutMocks.swift │ ├── LegalInformationScreenViewModelTests.swift │ ├── LocalizationTests.swift │ ├── LoggingTests.swift │ ├── LoginScreenViewModelTests.swift │ ├── ManageRoomMemberSheetViewModelTests.swift │ ├── MapTilerURLBuilderTests.swift │ ├── MatrixEntityRegexTests.swift │ ├── MediaPlayerProviderTests.swift │ ├── MediaProvider │ │ ├── MediaLoaderTests.swift │ │ ├── MediaProviderTests.swift │ │ └── MockImageCache.swift │ ├── MediaUploadPreviewScreenViewModelTests.swift │ ├── MediaUploadingPreprocessorTests.swift │ ├── MessageForwardingScreenViewModelTests.swift │ ├── NavigationRootCoordinatorTests.swift │ ├── NavigationSplitCoordinatorTests.swift │ ├── NavigationStackCoordinatorTests.swift │ ├── NotificationManager │ │ ├── MockCoder.swift │ │ ├── NotificationManagerTests.swift │ │ ├── UNNotification+Creator.swift │ │ └── UNTextInputNotificationResponse+Creator.swift │ ├── NotificationSettingsEditScreenViewModelTests.swift │ ├── NotificationSettingsScreenViewModelTests.swift │ ├── PermalinkTests.swift │ ├── PillContextTests.swift │ ├── PinnedEventsBannerStateTests.swift │ ├── PollFormScreenViewModelTests.swift │ ├── QRCodeLoginScreenViewModelTests.swift │ ├── ReportContentViewModelTests.swift │ ├── ReportRoomScreenViewModelTests.swift │ ├── ResolveVerifiedUserSendFailureScreenViewModelTests.swift │ ├── RestorationTokenTests.swift │ ├── RoomChangePermissionsScreenViewModelTests.swift │ ├── RoomChangeRolesScreenViewModelTests.swift │ ├── RoomDetailsEditScreenViewModelTests.swift │ ├── RoomDetailsViewModelTests.swift │ ├── RoomDirectorySearchScreenScreenViewModelTests.swift │ ├── RoomEventStringBuilderTests.swift │ ├── RoomFlowCoordinatorTests.swift │ ├── RoomListFiltersStateTests.swift │ ├── RoomMemberDetailsViewModelTests.swift │ ├── RoomMembersListScreenViewModelTests.swift │ ├── RoomNotificationSettingsScreenViewModelTests.swift │ ├── RoomPermissionsTests.swift │ ├── RoomPollsHistoryScreenViewModelTests.swift │ ├── RoomRolesAndPermissionsScreenViewModelTests.swift │ ├── RoomScreenViewModelTests.swift │ ├── RoomStateEventStringBuilderTests.swift │ ├── RoomSummaryTests.swift │ ├── SecureBackupKeyBackupScreenViewModelTests.swift │ ├── SecureBackupLogoutConfirmationScreenViewModelTests.swift │ ├── SecureBackupRecoveryKeyScreenViewModelTests.swift │ ├── SecureBackupScreenViewModelTests.swift │ ├── SecurityAndPrivacyScreenViewModelTests.swift │ ├── ServerConfigurationScreenViewStateTests.swift │ ├── ServerConfirmationScreenViewModelTests.swift │ ├── ServerSelectionScreenViewModelTests.swift │ ├── SessionDirectoriesTests.swift │ ├── SessionVerificationStateMachineTests.swift │ ├── SessionVerificationViewModelTests.swift │ ├── SettingsScreenViewModelTests.swift │ ├── SoftLogoutScreenViewModelTests.swift │ ├── StartChatViewModelTests.swift │ ├── StaticLocationScreenViewModelTests.swift │ ├── StringTests.swift │ ├── TextBasedRoomTimelineTests.swift │ ├── TimelineItemFactoryTests.swift │ ├── TimelineMediaPreviewDataSourceTests.swift │ ├── TimelineMediaPreviewViewModelTests.swift │ ├── TimelineViewModelTests.swift │ ├── URLComponentsTests.swift │ ├── UserAgentBuilderTests.swift │ ├── UserDiscoveryService │ │ └── UserDiscoveryServiceTest.swift │ ├── UserIndicatorControllerTests.swift │ ├── UserPreferenceTests.swift │ ├── UserProfileScreenViewModelTests.swift │ ├── UserSession │ │ └── UserSessionTests.swift │ ├── UserSessionFlowCoordinatorTests.swift │ ├── VoiceMessageCacheTests.swift │ ├── VoiceMessageMediaManagerTests.swift │ └── VoiceMessageRecorderTests.swift └── SupportingFiles │ ├── Info.plist │ ├── UnitTests.xctestplan │ └── target.yml ├── Variants └── Nightly │ ├── Resources │ └── Nightly.xcassets │ │ ├── Contents.json │ │ └── NightlyAppIcon.appiconset │ │ ├── AppIcon.png │ │ └── Contents.json │ └── nightly.yml ├── app.yml ├── ci_scripts ├── ci_common.sh ├── ci_post_clone.sh └── ci_post_xcodebuild.sh ├── codecov.yml ├── docs └── FORKING.md ├── fastlane ├── Fastfile └── Pluginfile ├── localazy.json ├── project.yml └── renovate.json /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @element-hq/element-x-ios-reviewers -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "Enterprise"] 2 | path = Enterprise 3 | url = git@github.com:element-hq/element-ios-enterprise 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/landscape_test_image.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79da65d0e46d2d7520db60a9e39513484cab5f37b797d1745a921d8a7014aebb 3 | size 2298757 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/landscape_test_video.mov: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:385db55be6b9f4d7bc45b5dcd73ccff82d0e1b8ba0f642f755c4c5c3f8efd2ae 3 | size 4017324 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/portrait_test_image.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b618d6055c7d4fb53e5edb487a5c1a6fdee0fb966c7910df95e01b612c3b2ad 3 | size 3059441 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/portrait_test_video.mp4: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc39671ee91a08779e4149589a4635fa6b91519b07bfb2dee621ccab031a75c5 3 | size 5825201 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/preview_avatar_room.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1aa940ac6487babcc3d44258672bc8641b37ecd4a2d88a0450029861b252ac1f 3 | size 503787 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/preview_avatar_user.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff47f9b60b2cb0b13fab7f2a55dabc988a2cfbab75b23c8a9301c13f69592449 3 | size 475183 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/preview_image.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:83c6adf9c32cf37cef14510e2ed9af925b8ef384f6507d7dd590132871ab9917 3 | size 758843 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/preview_video.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27b573d45f1cd8d22bf6a31ee5f01b316e6466f5f98094e50be716e669a6bb2c 3 | size 473199 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/test_animated_image.gif: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5620e35a28235cc36a4022a1a35849ec5b67eacf5e58c993161d2972cd5ff518 3 | size 1897131 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/test_apple_image.heic: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f110a5cd97e0e9b38258833274944e816f36379631eeb6883ddf6babb9bef37 3 | size 1827200 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/test_audio.mp3: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2dc7ac6a80fd59646c736451ea3df42da1714a3de5ae4f3226f2168b7f80875 3 | size 194811 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/test_image.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3ff2e57850649f588516a1a2688be18df8cf8a0bb8850f8d943cf28659beca5 3 | size 6163 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/test_pdf.pdf: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9566448c2b7ee28833c0dac515405e88e49351006103bca037a2a53242da9828 3 | size 176081 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/test_rotated_image.jpg: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:094ceac734f4461ae9f1c47eae58c13270da6f407718b12e3142cac3dc0b38a7 3 | size 1735894 4 | -------------------------------------------------------------------------------- /DevelopmentAssets/Media/test_voice_message.m4a: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48972317dcd3999050bd6d0ef0dd97a1979089029460282892dc0f17b8449ac5 3 | size 73804 4 | -------------------------------------------------------------------------------- /ElementX.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ElementX/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/element-hq/element-x-ios/cc8f6bb44c5467d3deb78c374a1879bc54054b67/ElementX/Resources/Assets.xcassets/AppIcon.appiconset/AppIcon.png -------------------------------------------------------------------------------- /ElementX/Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ElementX/Resources/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ElementX/Resources/Assets.xcassets/images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /ElementX/Resources/Assets.xcassets/images/authentication/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ElementX/Resources/Assets.xcassets/images/composer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ElementX/Resources/Assets.xcassets/images/location/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ElementX/Resources/Assets.xcassets/images/media/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /ElementX/Resources/Sounds/message.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/element-hq/element-x-ios/cc8f6bb44c5467d3deb78c374a1879bc54054b67/ElementX/Resources/Sounds/message.caf -------------------------------------------------------------------------------- /ElementX/Sources/Other/EffectsScene/ConfettiScene.scn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/element-hq/element-x-ios/cc8f6bb44c5467d3deb78c374a1879bc54054b67/ElementX/Sources/Other/EffectsScene/ConfettiScene.scn -------------------------------------------------------------------------------- /ElementX/SupportingFiles/ElementX-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 | -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/ar.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "التراخيص"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/ar.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "مخزن"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/de.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Lizenzen"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/de.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Danksagungen"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/en.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Licenses"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Acknowledgements"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/es.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Licencias"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/es.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Expresiones de gratitud"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/fr.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Licences"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/fr.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Remerciements"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/hi.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "लाइसेंस"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/hi.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "स्वीकृतियाँ"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/it.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Licenze"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/it.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Ringraziamenti"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/ja.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "ライセンス"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/ja.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "謝辞"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/pl.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Licencje"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/pl.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Podziękowania"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/pt.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Licenças"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/pt.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Agradecimentos"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/ru.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Лицензии"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/ru.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Благодарности"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/tr.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Lisanslar"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/tr.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Teşekkürler"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/uk.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "Ліцензії"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/uk.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "Подяки"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/zh-hans.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "许可证"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/zh-hans.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "致谢"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/zh-hant.lproj/Acknowledgements.strings: -------------------------------------------------------------------------------- 1 | "Licenses" = "許可證"; -------------------------------------------------------------------------------- /ElementX/SupportingFiles/Settings.bundle/zh-hant.lproj/Root.strings: -------------------------------------------------------------------------------- 1 | "Acknowledgements" = "致謝"; -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29bea26c7a1777f0ba6143ca67cfb6a6798b0acb616727cf56a475740c1d6cf6 3 | size 184442 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e0e5e3c93611270fbca8c195f19b882e04045c94d6db5ed78e59fcbeb5be690f 3 | size 217644 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0eba191d57ac01baf5a87adbb52c5b8493cca2c7ab8d1a10d5e905eb78b2ee32 3 | size 129615 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/advancedSettingsScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:74b86514beb0ce8b06cfbd3e3b015f2319ab6014a6fc6da8978fc19a111beced 3 | size 168748 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ad3f04fa5b8ca966c6104eb720e41a307a122ed6388a687e2b30ff80f2507d9 3 | size 516292 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.Default-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4042061b97bb697c4e04993d9318c2e73e762117751c2e9df2dc11500c19d396 3 | size 542539 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6fcab1ccc72812d59a6b927c7731b7c1cae82b457a86ed6530cf610e9ae55f1 3 | size 509252 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsPromptScreen.No-terms-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:725a62a99cc8483ecb291544dd58028b9e967e8ca3c63a6b64a8cfc1def27800 3 | size 529773 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6926210d9a615c7c9d73a4dc5af08fed7c8a88da2de49bee8b9930495be8cc27 3 | size 98462 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb82fb5fa35be8896780ec5744a7e5cf8298806b8f0a1e83d7328282c6165309 3 | size 104971 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:330ee2e7a3f8ee055400f00d4db60c7410338539ed1df9a36605e05bcb781561 3 | size 51483 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/analyticsSettingsScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f00ea9dff06560ad9b8c40f249a5bc88112e3e506c8bb584c4081340953d830b 3 | size 66262 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e53ba51653246ee942f9aada8c77107bcd46c70c45ce5fb8f027f61fede083b 3 | size 114642 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e5c81d7fdd23c78b7946b9de21ea69aaefa9870f7374eaa20bc3c9f7a13c002 3 | size 123128 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3862695520a15fd20a496a958ff81da6c0791f90dd03be48bb49139aadfb9428 3 | size 70758 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fec2ea55738cd60512c839c92699d01905a7d81207edc8e3377fa3d5f8afbbaf 3 | size 77712 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a10802f517ce3b79b274aa97809898370e174fcc444fd542a3ba5ec8f2a6eec5 3 | size 99149 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Confirm-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a713effe57f94866e1b5e3d7d49531c1356593f9a04c3a829183d3c3fc2bd850 3 | size 117964 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcadc2f7d2e50e0695655693e094244c282ea7733a0ed16a531eb5719f12ebd1 3 | size 99518 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e16ab41a6aeb66c2f7c3fad62f3e4f243ddd4d9b0617239768bd2b8cbbb43ee0 3 | size 118271 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Create-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bc297fa29d248010fe61dcbb9bb9e3ec9691565b384bdc0ba603ccba25787163 3 | size 58617 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8d8f6dccf4f0a1b4354a32520563f0ec4cf19096f5d3e53dcb50db84d4c7bbd 3 | size 89375 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a07c9c532a59471b4f9bb6d165d9e201065646a124e05c42dd68a06b68410b7b 3 | size 93656 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/appLockSetupPINScreen.Unlock-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:72383f9c2649be1102116cc27376dfa56ca4a2a1b9e7ecabb5831d50fa591f12 3 | size 47717 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15b1a0f770650e13802ff707e7c16bdb413f43c311593129cbb90a2a6b077114 3 | size 94305 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/audioMediaEventsTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15b1a0f770650e13802ff707e7c16bdb413f43c311593129cbb90a2a6b077114 3 | size 94305 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9553383b6be10ac1d6adb795e060655a93b7a2c38e1adbbef82b23f8a1fa166a 3 | size 101537 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:605320bc00ac3836f3323512e295c64fe19cbf9ea528b2f4fde788fd22b9f7d3 3 | size 103179 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cf70fca82218f56874b858681386b5c53192454c614838752586e0c9e22c85f3 3 | size 56349 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/audioRoomTimelineView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1fb063ce065d3a557691b74159dd70dfd850fc31cb4dc1a15fcd256d365a2255 3 | size 57644 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:707929d4797eb225028ebcbd4e1c51eda00c72e3f738eb19d7f55e940b24a821 3 | size 155107 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd245e575e2e9f820bf1fc520b88c5c27ace5fd643fa7332cc04aa1c0ef1fa5b 3 | size 155448 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ce40b37d2dead120a4da878e360f9abec2fdb0fa4eba3dbea0b6ceae36fa27f 3 | size 99741 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.DM-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:862bc236e1da06d72f06f3041fb852e9804e19a84fca162af6f496b2b33c6ec9 3 | size 101330 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:493c41850095be08f435a4a1bb4e18ae68cfadf994066264e0f44ad70af13b55 3 | size 106299 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2c396e83a94d4472e83af14fcd4eaca68c3176506a0f6a215c20ae31f23d2d1 3 | size 106514 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67f92db441777a68375348385b108cdb60d7b3e8ffc677e1630ac7dcdf258369 3 | size 64745 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Members-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93b2adaf1e0eb5c05bce99d59497f17b48b575f46667e649171702d760d6eaf9 3 | size 64989 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:28f9c9a0f3d816dac8818f832327f4c5f28499ad0d5aaa04acef29d4118f6672 3 | size 174382 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56701625042e00c43a7db4a4a23175207393df4df78915fca5a8dadcfc03259d 3 | size 175753 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:add8a54fe304853bbab5d75586b26a3fecbecf488d40f175be609cb386ad84df 3 | size 115082 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/avatarHeaderView.Room-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6ea4ed79f1c5a6b29ab0299a0c2eaefa30eb69193c6448bf3bc58bab19aab73 3 | size 119461 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d7c3c922a7f7dcc3603262eb901acab8800d32dfa1966e7da944c8ce2153b8a 3 | size 75689 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d7c3c922a7f7dcc3603262eb901acab8800d32dfa1966e7da944c8ce2153b8a 3 | size 75689 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:970fd6a95b0ae9893db5f863950bdd6cbe2e12f648307d6990ae9e0881b95754 3 | size 34260 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/badgeLabel.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:970fd6a95b0ae9893db5f863950bdd6cbe2e12f648307d6990ae9e0881b95754 3 | size 34260 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:521c3f78b534dfe2f97b09d756e1ecbd482658243c237002a46e2a7bd0a7e84c 3 | size 86830 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:521c3f78b534dfe2f97b09d756e1ecbd482658243c237002a46e2a7bd0a7e84c 3 | size 86830 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c28eda1e4566f734bdbed8d6582237b2d3c2c37eab26d5e056080622e0c2697d 3 | size 45905 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/bigIcon.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c28eda1e4566f734bdbed8d6582237b2d3c2c37eab26d5e056080622e0c2697d 3 | size 45905 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a610051a00b4fd05222226332611b131f8fc5e9658fa637d87e1bc2c93f1d077 3 | size 134219 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e32cef689f4965a86619052939adc033bb752ac52e5941e51c6d9381fd6a4e0b 3 | size 134827 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:56034d6fdb06f469ebbb3328591e2106428d8f1e6cd52539ff3a5545ea65957c 3 | size 81251 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/blockedUsersScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e2a1d28a41ed0bc2e42b4f3a6ac7fedc641052847cc5d8694b30131a742399e 3 | size 81848 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2f6e093ef7e0b912b729c33e94d6c16cc7c825468a7277d6f3c015eebeabed6 3 | size 205892 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/bugReportScreen.With-Screenshot-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4285cf44166fdb0238c19f54d30bcb280f2f7492b288d120bb90340f71bfc147 3 | size 242121 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f3854820e1ee98b2424754395c3b9ea753fe48b61e254413d9f7728ae609c644 3 | size 77668 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:504394217bebb537fc72269b9aa338886b3d7ae156d7229fe8c60a4ccc4e5a34 3 | size 81446 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/callInviteRoomTimelineView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d32a502ad3140eedf9bfdda58e40bc1edc343ea138a29e9946425c064c6a247 3 | size 37869 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95245027a26bfb57fe71033dc1d2c2d9db647a452f6afeb7a738a42bdbcd5b16 3 | size 70510 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/collapsibleRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f09486ad0d4731c1f3acc8087b697771dedb09559f49d2cf8abc9ab71ef8b6db 3 | size 72980 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:371dd1e2a2d02ee5d96a82feb613832e285589676224c942a0ae2f447efea230 3 | size 98164 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef569f4d1e159ed776aa8b785b0846f03feed3de6bab813796cac551442285ab 3 | size 81486 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:371dd1e2a2d02ee5d96a82feb613832e285589676224c942a0ae2f447efea230 3 | size 98164 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPad-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef569f4d1e159ed776aa8b785b0846f03feed3de6bab813796cac551442285ab 3 | size 81486 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6df601ca831dee13480c5529b104019aedd632aab5e8dc241100780a7fcdfd73 3 | size 54569 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cda4339378df421b5e4b2a018bb0c56be3c5ef9ef45de380083d145f1cb894f7 3 | size 40456 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6df601ca831dee13480c5529b104019aedd632aab5e8dc241100780a7fcdfd73 3 | size 54569 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/completionSuggestion.iPhone-16-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cda4339378df421b5e4b2a018bb0c56be3c5ef9ef45de380083d145f1cb894f7 3 | size 40456 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82285a55ec3b0f5298ce5b647aabc6ba6c972ce990dc57a4022386153b1ee853 3 | size 75188 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1c492e3a9f6ed6ce82fe30793dee376a21d65e08ebd30feb533eed847ab19eac 3 | size 75607 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b4c630e998cf988d78fa47c173cd6c88a0ba62614aece13594e38b1bedb5a18 3 | size 34259 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Disabled-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0dbeab35fcfbe6dd91a0d6f49e034f10947a4cba8434ba4426372a5a43cc7503 3 | size 34683 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:354ae5c30f4f69ab6b937267bfdef9a90529c742713058f310243fab3aea3d4e 3 | size 93459 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:95ba8bd9275db26f0d2c65ff8a0fa87554a9c4fed7c1bb7730fedc511d5e6673 3 | size 94331 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8c1bc355f9cf5fd9fe2d513106ba255a5ecd1d734e2804c7aca8666b2b6125c 3 | size 50545 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Reply-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f663184357a7f25bafaae47d8a0f95a4007576bfa63e8d8a9a0f7cd693ecfb1 3 | size 51416 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6481af0efc8d6db57d290462e559e8a468dcd762261d75ed689076df4ebff2a5 3 | size 98651 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.Voice-Message-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2fdb37f8cd26f33b98d90d5a8e522a7eb771df126d8077846d0bf99667aa4474 3 | size 99448 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.With-Suggestions-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e84f7915ecc0c4e045374e0d90076c6c7ca9474b5608638b05b3a767c6a92eac 3 | size 108030 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0b04029a954554a00aa296dcbb1f97b64e403deaae862e1fedc9e3a735c299d5 3 | size 75293 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b47add2c0d7d279cb1b311aa9614911384bbbf5c1cefffe093048505241473f 3 | size 75711 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fa9feca8c6f7644e1e1807fbda71752957c4f57ea43222e802426fc586616338 3 | size 34424 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/composerToolbar.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a2d51b37198061c4bdf5fb198e16584c30f10a03a0eb0bcc9ad11bb704aa2a19 3 | size 34839 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Public-Room-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:64f32cea0d9b694fdd4a1e0a89b1ae751ed7256003fc105d1f04fb2e5c61b153 3 | size 189008 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e2953cf5534d4445c47bd2abd92bd838757a5c56925b628430d1156cc7cd57a 3 | size 143957 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ba58b12563afe2c442807f1f826b5aade69af488a865b4c5d406d65329b01a3 3 | size 172913 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/createRoom.Create-Room-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4fd772d63baee2dbb0b7055a5a971bd189b15cbe78456422091ff84eb0c4a6aa 3 | size 96490 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:43dc8efb1831a8848ed00410131dbb74432622505fa7bb77d6554b06a6e863c6 3 | size 170119 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/deactivateAccountScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f9ea0fa48335c457a03cb64291a80a84b3b248d961e63777447b56fe1253d78e 3 | size 219450 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d70b6990d2e5b30be2fb6b2d77e99c36ea991988413cb9eea85df21c8cc1e87f 3 | size 130748 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bfbb5285937c97a49e6a1fb294af3812dd24b24b2468d9f23e4f738da30bb01a 3 | size 134239 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/elementTextFieldStyle.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11435b5e7c43b3f82305949a50612b47956a966b38483156deacdf1d0fce0a96 3 | size 80327 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b07e6722d1b370eca75f23659fd4278bfdef02d9eb8fc88e8534d4378a02664 3 | size 985306 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/emojiPickerScreen.Screen-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4785244f075c1e2c377537db599085adadcfbd8f11ffeed7d6ff4b034861a9dc 3 | size 988710 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11f8f3369d7cb4475273292b3ac8b136abb9e1938304465d7f6118a3a1fe1ba6 3 | size 103290 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee1a11a692057d4cb4456f1a9e016a2430280b36e96f81c5253634bac7ee1e61 3 | size 105001 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/emoteRoomTimelineView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6ec4e3014d3a941820a7a8e11d50871331faf4515e7efc85f376a9571b46513 3 | size 69420 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/encryptedRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:599837b3cf44745e1a81f6eccf9687468286066981214ccb868b736befb3f80f 3 | size 118021 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0dc7bfd672fcfcd23ba57deb6cfc7980d27616e38887b732f99b88b0182fbb3a 3 | size 145150 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/encryptionResetScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9c38ed43a596a49a65793014ae6527a15c312d8c755ac9885850ae465733395 3 | size 200141 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86159730cd8db0b839c75dcb597f5292bfb8453945c8459d313057dbda54cab7 3 | size 69047 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:86159730cd8db0b839c75dcb597f5292bfb8453945c8459d313057dbda54cab7 3 | size 69047 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/estimatedWaveformView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e2c51c0add462a2c1ba59202d8cd54f379cd65dfd4755c9e7e3e190e5fb1009a 3 | size 28804 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b8a2e89475abd3331c24e4dd2f41c3412d8e2d072fb9fcad6b05c3fd6e2cc819 3 | size 139102 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c624fe747a8d28aa799c6a47ab307f97106ecfedcb03129889f2fc35dec7c590 3 | size 142396 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:81179e9a2b30239a3655fae58bc88cafaa49187f724e9760b149d6d6d33ae259 3 | size 91418 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fileRoomTimelineView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8822f785222c6ae1f8078cb57c8733ae2a3ff9152e85a710e94a742450e12e3f 3 | size 94061 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f7e3764e070ecc1bd6d58606f620a96053a8ed6b422b86d47c8375cfc993683 3 | size 79395 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f7e3764e070ecc1bd6d58606f620a96053a8ed6b422b86d47c8375cfc993683 3 | size 79395 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f95f4ce0f3b9ad30d6c5532001f1e13bede80d3c6db6b75172871340efd8839 3 | size 34095 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formButtonStyles.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f95f4ce0f3b9ad30d6c5532001f1e13bede80d3c6db6b75172871340efd8839 3 | size 34095 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a5300140d0d125b42c74b95e136ca19e809d0ca441f63dcf3e0eff2c38c0522 3 | size 319205 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a5300140d0d125b42c74b95e136ca19e809d0ca441f63dcf3e0eff2c38c0522 3 | size 319205 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:974272940990f0fd78e1f403c74ba9714fe8662d79399e91f63307bc35421fdd 3 | size 247463 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formattedBodyText.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:974272940990f0fd78e1f403c74ba9714fe8662d79399e91f63307bc35421fdd 3 | size 247463 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53bf1224988a6b72e2d1661a0a3a664541e0e8f317a78face45bf08a53138e9d 3 | size 77999 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53bf1224988a6b72e2d1661a0a3a664541e0e8f317a78face45bf08a53138e9d 3 | size 77999 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3a67f6ea471afb4802522f3489f23cde7b7b560a6e36d02fca28239d4a0cae3 3 | size 33560 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/formattingToolbar.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c3a67f6ea471afb4802522f3489f23cde7b7b560a6e36d02fca28239d4a0cae3 3 | size 33560 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:66d84dd1b7a18c934c71e407102b946e73a920f3397629581d772022c57de985 3 | size 548532 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Gradient-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10857b7f5d5693aff8739743251d98c3b36fc2bba249fdfb061dae1e817c45f9 3 | size 567358 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2cbb7146c76f8715d9b928d01d8f1db6e06ac2da1ad6d82cc2e0d3c298594bb0 3 | size 118260 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15a8b3565d8e92b05c517d4f2893343b283f226f03ee5bf7ae73db3c4f7c6a15 3 | size 124580 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c090e61821e52c7a15bb06e38d4fbdc24157b4b3bebbfa03fcc9b764e17b70bb 3 | size 72367 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/fullscreenDialog.Plain-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0680373a759361f060727f6f6325ad579470101fef603ea9e07999a8c4c76d9 3 | size 88841 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8330191544e3657e0e3533d668e9b0a87d026a657d85df753b59d7ac7dcc0a88 3 | size 169757 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:634dace53b6cf3fd5333581f6af4b7a4fc61aea536f9c3521d4066eff5bf4bf9 3 | size 170141 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:76d43f9eeaed0fc25fef35f560cfef46968f58406a2856616b27eea74853b93d 3 | size 103810 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4437a44dfc2fda3db1823458d07043f82610f70065bece40e5178301bd536536 3 | size 104142 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6ad3fa0fffcebbd96be208c97874b8ae40b3b1ee3444b59b707f5953d254b0e 3 | size 98613 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/globalSearchScreenListRow.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b6ad3fa0fffcebbd96be208c97874b8ae40b3b1ee3444b59b707f5953d254b0e 3 | size 98613 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:498e426cdafbcef01c8e431bc5fab9150b5cd795915f914244fada9c1d28c54e 3 | size 94117 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4daf902f81c2f4a23c9544685f42bf6e8ea26d68dfcac72244c7811ee537a8eb 3 | size 98432 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:875afd204492380b88399d7c0ce93cb605f949a22f582218f6de929473ca2235 3 | size 53420 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Empty-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da13548671e4afb3e371d2edef1b1097f23cdbff2dcfbc66ed3cfc3efdde1299 3 | size 63632 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d8857f34fc49bd98435b4e5595c10b1a463987f83084edc7682591993f69137e 3 | size 260979 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93bec421deab287621f9491cb3c8f1f6c5a2032f035b33c0e694eab5e73e40ae 3 | size 269355 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c17c1409da49b67f48bbc12856a7411368741c1e987933d1304fef98aa1a81f 3 | size 195209 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loaded-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bdc4b92d1659096dc1bc61acfeab73799d520a990b34621ff398fa1563cbbf83 3 | size 202572 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fbb929cb7177e45396a10b14ff1fddc351cfb6b5a5754fb1f52ef44666ebb3ab 3 | size 92017 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:686e08e7fb182eb86468c8fbc0905e52f26d2319c98e3be022a39181d8b511a9 3 | size 92729 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0af4162fc19aa519aa0f2182cd3eab3d9e73d645cb550e545227d6f5617a38e 3 | size 50109 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreen.Loading-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccae5111908061e0a138ae2fc48b1aedc6bd889ed5380f352206bb2940f291a8 3 | size 50986 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ea2cc7d91e41d0aec0eed3d3eab224f34dc6db9d720acf545bdeacadb5f8617c 3 | size 285651 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bab250389d2d96e64b972c46d753d74e805240f2401d30a87d8b01405c564350 3 | size 305385 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenInviteCell.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b39b3589ba23ed88fb44da76536f17b882040c87ed5597b8be273329cd1aa6d 3 | size 229692 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35a8ec89cb55bcd41aa7a022ce5dd028d8f19c7e09f69ca120090bda9671f113 3 | size 184071 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenKnockedCell.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b8bfeb1dc08cb0c8cec725eabaff5a0c0235b0a0202606a55f84bfc8a1779ac 3 | size 197627 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5049db4e463707a92bf4d6a82001f6bf06f63221f182870bf0efb88a9390fbf4 3 | size 242678 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/homeScreenRoomCell.Generic-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:32da7e0537cbd586dba8bdb79d155a81c7f5fae7a9749555a0ee26b90bd5b715 3 | size 248416 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:67c77278179e5379f7317b41da8e7482840dd605759020e246f914bd5e7754f0 3 | size 94443 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/identityConfirmedScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb38c7fb8c5e546c9539c8609c8e34f0917fb305bca69ff0f8ddafc57e5bf20b 3 | size 107987 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c0458c88f97371525d8d2392fcd36be5f8c501acc2076a7f5a92aa5a6a11a3c2 3 | size 4551418 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/imageRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:319547b1fbed1947b2f904f8443bd43424fae1e6d886401396256d55303c3c19 3 | size 4537191 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:96ca7ca00c3a67797876ca1aca2318dbdcfdb47703a620b84af6131296c031f9 3 | size 86557 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fd6cc6daa3e574ed76b6ae02084fbcd73e9982b703200139f680532aa1bc32ef 3 | size 89063 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88013d3102b7d37ff7844887fa99986b00f032556804593d924e792a2205dd24 3 | size 41296 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/inviteUsersScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:511d2ac95d2f19aaa1876da61fe9dffcfe3b6a7d54e9c81ff859092b4aa5dff1 3 | size 43366 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3ed827a1241328c2590775aff6c4590f6c138a52a59720c26a12b36f038d0d8e 3 | size 85554 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9b5eaff68a99823f23694cf25956308da24a7e9389719b8ac2bd8ef7fbe56c32 3 | size 91105 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomByAddressView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:19b17304e85bc9d90b8e8cbfec9563a13199674abbbe114fa5e5211afc881292 3 | size 42071 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bb95cfaa18cb26f9cc6c82a8c11d3f032b2af0c7c3eb5faad7003928196ad65f 3 | size 207556 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9f7d9eb659c324454b102746c9e583ce1276e68a1d262366bdc686dd7976c7ba 3 | size 218268 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:15a858e153b470913d8a6c6604f21332a69779a157608619e559f52da84aa337 3 | size 163128 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Banned-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a787a4a8bf924e33d934921e8799457187b3783d8bb2f2b3495f8a1710f07c70 3 | size 177515 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3aacd30824f4fc78e2f92476cef0698c5144b2fc2241b7c5d4973baa272cb346 3 | size 207527 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Forbidden-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e7b793509581cbb362e946f030541822973c0fa4720be0b5a9b87d379267c2c2 3 | size 220412 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccdf6b4198c2a855df924758482362596b4ca9f2a034f5229228e50aa0c0f2b8 3 | size 204243 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:350adbbc77f245dfe7f822da44c69c4050a8c6f2c63800b57cf79b954acf5ad5 3 | size 211926 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Invited-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:34e5d01ed3109e359aad855a408bf9885924d83e39b830bc45f8ef49d4a3040f 3 | size 160117 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:57335ecfb234a8b7f07533d2590a5893d8a345566de957c3c8078311ac2220fb 3 | size 104839 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.InvitedDM-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0071866c826fb34a01f6e39dd912efff185ec3c5ceed12c6cde1cacd0ae76f71 3 | size 112509 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:614b7fbb6d4659ee341a447658b7a7009a2b1c8eb9bd410c52a643470ecc29a0 3 | size 197528 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Joinable-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38e5137d1e07ed48a1305266804b78cda7fb27b704558813d223e6f506b8ced9 3 | size 199277 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:898d87b40e4d9c2590023436e19ce48586bbefd898fd60968865754f01f6bec1 3 | size 209881 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knockable-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0639a103ce9ccba5ef1857d286be86f05050a9d4326e2d145dc9af6f769f407c 3 | size 216117 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82d68dc2e6ab3547781f871511a83a8153942407f966a036d8836e049023b255 3 | size 110341 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:53288c6df0c0c9f96297a9e97e06a9d00ebdc860d24ac4072cabe5f2989522b4 3 | size 120127 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d935b69c623bddfecd5bc2dc7542b809917e4678282ac539444712adb5289c4e 3 | size 68154 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Knocked-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2041401d6e26baa1052378eea72ff08dbd4e739fd57ffb6e81603fad29e4c83 3 | size 82058 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:843c9bca5aaf1d8ab46b56bc2fa87f661306235d1fa89067afeb99906c4aace6 3 | size 212826 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Restricted-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4f1a333d9d693aec8b7e2e352d469b356a4475c124105ec927babf1e7f484119 3 | size 225682 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1790aeffe51cdb48d16beca802aa7ad55c38a91639a5c140158367b6dede0c47 3 | size 106679 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:54e8363df0eb18c7917f7a744a04eb12f3d0f9d029f1db54a61cacbdcd79e9fd 3 | size 121729 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ed33503f049b8b9d00b1107806c72e963517ef9af8bd05978f8e00a0029890c 3 | size 63100 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/joinRoomScreen.Unknown-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ffaa33792427b91784773f513c3bffc2fbbbe4b32c04f4adb0c3826ec07e95a0 3 | size 82426 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:221946c1857d77dc9f5b05e970675c8eeb98ef4fe0a8cfcd202f19d6a3d97294 3 | size 91185 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-name-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d06bd48d368307d9893eeb1053dc1ef3c4f6c302171b5f533fce4009c2d9c5e3 3 | size 92734 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90a6927dfe4a892b81d9e4dccff41d400142d69d9d511dead8021f70f6915875 3 | size 92294 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestCell.No-reason-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8883d434335ff72a64f7b9fa01e06e4b2b0500001569cda2d25b7a8bff68997 3 | size 93827 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c9e52e080258d8d8fcd1b32073100fee78ef01c159b82997d550e021593dca9 3 | size 172930 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/knockRequestsListScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e2e3709ac6fb3c0e57a1e3a977b014e339ba4d88f98600b24a87043e1289a77 3 | size 179127 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:020697b03115ea30780e9bd580bf66ab238084bdbf10ba88df4526e07f1c868e 3 | size 90870 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/legalInformationScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b624f0ab4144569d449390c88bac210bfc04c98da60a3a75443b9530d5a071ef 3 | size 93460 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cdb760551c4ee06f90180920d595bed05d76ea02cf06575732903597d04c6867 3 | size 94611 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cdb760551c4ee06f90180920d595bed05d76ea02cf06575732903597d04c6867 3 | size 94611 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e16d68afd6a8163c1bda175de195bffe0f1cd5ab003ba6c83d351aecf1ba177b 3 | size 51993 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loadableImage.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e16d68afd6a8163c1bda175de195bffe0f1cd5ab003ba6c83d351aecf1ba177b 3 | size 51993 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50d10b115b5448860bf484c75d09bd7691f008cc02940b390a2190a57faacac6 3 | size 82843 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:50d10b115b5448860bf484c75d09bd7691f008cc02940b390a2190a57faacac6 3 | size 82843 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c273a9fe94f224d4c2bbc169ad08f776d241cf3e8e501a0a8e366842ccacd45d 3 | size 40721 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/locationMarkerView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c273a9fe94f224d4c2bbc169ad08f776d241cf3e8e501a0a8e366842ccacd45d 3 | size 40721 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99713155f5f915609f911fb376f24d6113976b67da1b5e47fe08657ac190647b 3 | size 95550 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Initial-State-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8f38b0db91a0124d943bc30ffad8cb25ac52e444dc3781da49e1ee2c516aa004 3 | size 103232 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:393719fe4c756f719ae41a1a62d0b824c75946f69422a7bdfae30092d0d3da58 3 | size 95875 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a4add6df3a64f98b77173dca8cd08ffb29b6bbb21ad5ccef015b1f5ef60dffa6 3 | size 119145 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/loginScreen.Unsupported-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d06695be5ca29ec08c9ac574711a0badd045756b342e9b00311c18433212ea5b 3 | size 55486 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36982e2a41c8c0714a23cdb36f836ec8cbc27dd358199b903d09bedc9e755e63 3 | size 108470 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:756efc0968edd70f952a17e3c9f1e14b74e44addc2d55936e904c004230a7604 3 | size 109189 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/longPressWithFeedback.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:18af56a5cf5677afe99ffa7036616e72674a666fea70dfaeb7165dd06a915171 3 | size 67436 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:859d32a3494596b221e2b3ee7b9a9f7cc22aa58c2e8c3d612609553f70c3124a 3 | size 2576786 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/mapLibreStaticMapView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:859d32a3494596b221e2b3ee7b9a9f7cc22aa58c2e8c3d612609553f70c3124a 3 | size 2576786 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e8f69de3a43c8fda4a4d2ccf3302b8a1be36371a804be72945a1e993a7bea51 3 | size 69513 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e8f69de3a43c8fda4a4d2ccf3302b8a1be36371a804be72945a1e993a7bea51 3 | size 69513 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e30b3071e1cdc60ab4f80bbf87d6fb88b4f1027ec2d18ebad669ee8d21fc4e9d 3 | size 29090 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/matrixUserPermalink.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e30b3071e1cdc60ab4f80bbf87d6fb88b4f1027ec2d18ebad669ee8d21fc4e9d 3 | size 29090 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27c1163f7415e7ae06bd78fb6ae0f78d0cca150ea2bdcb68fdc6e1457181b05e 3 | size 89578 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/mediaUploadPreviewScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85b0734b01882f8aa19f8f6ffdf81d1c6824c5340114bbf9d7d53bfd448fc1de 3 | size 90613 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff23bd65e045fb72987378893db31d89841f173c5d0ac544ec6e1dcb0b5715f6 3 | size 230776 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.Replying-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee42180ee15f701ee7c9510d9169d331f9bdc0d4936867480876e1c1c752e1cd 3 | size 235581 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37e3e4f01b046dd46eb87c9558980c38e767748dbe0dfde4883e9ef84b674964 3 | size 160683 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4742677a0b69d55250cc2789e60427a7050a49e34004dac78588f3d4b10b936 3 | size 165446 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e68dfb15e0ceae9584386d9b2f35b231003ac282e153a0cd6ca61189d166c32b 3 | size 115467 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposer.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3f493fba0ed037910b7ca1ad4cef13208f0ae8b6a3afc9631868324145509507 3 | size 121168 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd9056ac1ae0605698fe7594cb9bba723e768ab915ca3b58a9ede7a1eefcb09b 3 | size 81792 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageComposerTextField.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd9056ac1ae0605698fe7594cb9bba723e768ab915ca3b58a9ede7a1eefcb09b 3 | size 81792 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e8070b141426f12f70536ec19130566f1d33b4a8e163f60696bab457c806076d 3 | size 169986 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageForwardingScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:515b38dd917617cd93d3db645bb4e5a187da6d2057a1e8ffac98b58df9e67500 3 | size 171882 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:246ccf3dab763371a54430473e36629b65b74b66134c3ac547d2a3499dbc193a 3 | size 75057 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:246ccf3dab763371a54430473e36629b65b74b66134c3ac547d2a3499dbc193a 3 | size 75057 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.Custom-Text-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c42a0011099843cc8a21a05511b8c1cf174c0f3a19c32bc5521c167a9d3fae32 3 | size 42627 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-block-quote-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:758cb2a11e32499693cf9b1d3ce4652769d402b89543c823d2c944a363d499fe 3 | size 92951 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bdf72759297ba0bd010c6ef0379db71ba710397cb0f660bc87e72433453b54f9 3 | size 79542 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bdf72759297ba0bd010c6ef0379db71ba710397cb0f660bc87e72433453b54f9 3 | size 79542 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91d608f5ded05640756d74ea89883689f193eae05217a4d5ae1444108169d805 3 | size 38950 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/messageText.With-list-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91d608f5ded05640756d74ea89883689f193eae05217a4d5ae1444108169d805 3 | size 38950 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4769be55b76d1424c40d9b273159a58f89ee63cd06dcc22817a9fa1fca690458 3 | size 105922 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/noticeRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dc4573fdd967980ce95ef55241417bdfebf38c8eee8f48a0a2cdb2d17a94a5a9 3 | size 107424 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c58b8daa0378a32b6e1e062333838c6395e52bfb1c95f788457965d23e83281 3 | size 108232 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5c58b8daa0378a32b6e1e062333838c6395e52bfb1c95f788457965d23e83281 3 | size 108232 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c79d044092ae68911550f15ae135d79bf5536a5f7b397a4b7f1fbe4e45e762c 3 | size 65452 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pINTextField.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c79d044092ae68911550f15ae135d79bf5536a5f7b397a4b7f1fbe4e45e762c 3 | size 65452 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a69dc4da7c7cfa9a9e02276b9d3ae3086b80dae50bd734aa15286c24031acf4 3 | size 73475 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9a69dc4da7c7cfa9a9e02276b9d3ae3086b80dae50bd734aa15286c24031acf4 3 | size 73475 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1917fe439a153d7de4e8a24d9367b9dc68be902c87ee157bd6ec0ec9aee7d8cf 3 | size 32599 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Message-link-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1917fe439a153d7de4e8a24d9367b9dc68be902c87ee157bd6ec0ec9aee7d8cf 3 | size 32599 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a3ce3dbcb983f608d38f510dc4ee16e9bc65c9e246aebb3aee8fc46bcaf476e 3 | size 69720 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8a3ce3dbcb983f608d38f510dc4ee16e9bc65c9e246aebb3aee8fc46bcaf476e 3 | size 69720 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79b26613033be55f6d5bac6ea368aa8dcaf346f7799af773bf1599984ffd6bb3 3 | size 30224 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Own-user-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:79b26613033be55f6d5bac6ea368aa8dcaf346f7799af773bf1599984ffd6bb3 3 | size 30224 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e8cfd15d81ecfd4966947582f869c4357cef4e54bd8646fc078e2a79b5fe0d3 3 | size 69712 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e8cfd15d81ecfd4966947582f869c4357cef4e54bd8646fc078e2a79b5fe0d3 3 | size 69712 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2199497caedf0c974a93d04445feb6fc11ca35d9f895d6257fd9c3cebc79a5d 3 | size 29379 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d2199497caedf0c974a93d04445feb6fc11ca35d9f895d6257fd9c3cebc79a5d 3 | size 29379 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eadb984285c3bb9a815f0fd7839d69b7af7968702f747b3a2ccc32f3a7091a52 3 | size 72100 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.Room-without-name-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eadb984285c3bb9a815f0fd7839d69b7af7968702f747b3a2ccc32f3a7091a52 3 | size 72100 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bb9ebd37827a5e9e3a18031e5d0a99215fecc2ba8bf7c91be8534aaf89224b5 3 | size 70033 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1bb9ebd37827a5e9e3a18031e5d0a99215fecc2ba8bf7c91be8534aaf89224b5 3 | size 70033 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09ee682cd01ba1e3cafaf4f36048e03d4904ae8891d7497d5588244a745b2bee 3 | size 29996 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pillView.User-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09ee682cd01ba1e3cafaf4f36048e03d4904ae8891d7497d5588244a745b2bee 3 | size 29996 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dbc88af2f67b1a0045bf4baa88979712528ba344ddb6d5c5c151027d9ed4aab 3 | size 140712 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e9f9b0b1077fd5276ca0715876e542d42b6ddf1c4a149992a97d18309fefce2 3 | size 168711 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsBannerView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:be82e5c7f7f347e1e4261bcc6b3747f79818995b07590257d20566acf17cffcd 3 | size 85868 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:05df896a2a8c47254923f58f9bf890648a75a252e34e6aeec9e4a3cbb3fb206d 3 | size 12286 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pinnedItemsIndicatorView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82cf4b22f5fe8cc6d10536a4761d6a94d3b3e9ebe802674f79a5d1f3487a6cb9 3 | size 16182 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eaa4236ec02b96b3883fccefc5e45b0b296448ab52ecc87201a837e5b1b23a83 3 | size 96810 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderAvatarImage.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:eaa4236ec02b96b3883fccefc5e45b0b296448ab52ecc87201a837e5b1b23a83 3 | size 96810 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Screen-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61f6e4e2777ed816cee39e9a833ecd4e8591f04056bf06da055f402db5048bd2 3 | size 192719 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/placeholderScreen.Screen-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:61f6e4e2777ed816cee39e9a833ecd4e8591f04056bf06da055f402db5048bd2 3 | size 192719 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccafda1521bc9a2620fb3698b0f743fa90c91b7b83b8fb6559f5862e1acbf46e 3 | size 121014 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e6b25c989524f3a1e89f2c85e8e0038c26cff7861b5f7858b7d76adbcf92a07 3 | size 126701 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5f0daee86253e12e036200de2891879f544e36910ebea901618d56bbe7149cc5 3 | size 73283 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.Edit-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3f72d6f9c708cc71a40ed5018f6648e9215966148881f9b38412b3d63f4dfb5 3 | size 83465 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4491fd198f3b9bd21cbb07f466ada9cba753975eef4db7c4e0f229484f0eb038 3 | size 122633 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39bc16d2356c9c28d54a7f221ff31caefb6d7d1c51f8b1243421a7d0f5754f6c 3 | size 133043 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ad3439570aa4cb816db2a33b4a9726fb22a910d0eef4ab6124a2e307f169db56 3 | size 72046 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollFormScreen.New-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d3c166c83623fbda8e11afa3009601ee0decaa2fa80f514b84a38c619ee0fa05 3 | size 88135 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3c77bb68c553b4124fb19c8630863becca35fc0cfb8bbbb85ac862d65fdad3dd 3 | size 90837 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:51b7e5479c855b0702cdc8f0fa985a46d8c72dce3fde9fb8170b97bb38ece4c5 3 | size 97598 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:36374bfa651aa0b8584c54e97e60df563cb2f23fd5c0e5687f68bb5cf0796bb0 3 | size 48886 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollOptionView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f95df9ef11bb6ad896ab56b3ca8e3627efac2806aeb754f6947bc9829721eef 3 | size 57851 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollRoomTimelineView.Preview-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c00200a6d90d9cd5bc28db35bf1d9ec0885fc3eda07fe1178a5a54aaffdbe74f 3 | size 79074 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:725ba9b50643cb587c8449e49b5f0c492db9fcf0cdd0415fb848f516117e7db2 3 | size 109828 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-disclosed-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a526fd24513bab297d4344e98b62a4e4f2aae6c81bf1acd98c88684fc2cfb55 3 | size 124211 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2353282fb6f89c719bbc70a64c19527dbbd177452fd347fd6228b87029f8f0b 3 | size 109338 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Creator-no-votes-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1d4e4cb49e1c3ad44e30636d772e66f2406861763cf333b44b7fb31c77f1ac28 3 | size 123483 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:827f997b33e8ea07a62ccf1347211d47a365da3d2424db0df3f9b0056768d099 3 | size 104228 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:80b15959aca9a63947a20b11a88278cf2a0579ae06e9b4c64c8b3f84d58d41fe 3 | size 118616 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1ba34530e7b046e29947f39fdfc56de2d032d4d84cb9212b2b6e6e9f5991fc3e 3 | size 59442 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Disclosed-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0248e4e0473d0e7500a1fdaf59c0f6d7c0f9088b1b82c1f1255132f15c85a85c 3 | size 75791 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08a40bfd211c39f291b4b60c5df8204cfdc6b7e367e2ca7b4a8b30b1b4556f1a 3 | size 104701 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Disclosed-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1d5c06d55282e9ad94da752045e1392d42dc00afab4adbf7a643264ce4f27bb 3 | size 118574 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08a40bfd211c39f291b4b60c5df8204cfdc6b7e367e2ca7b4a8b30b1b4556f1a 3 | size 104701 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Ended-Undisclosed-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a1d5c06d55282e9ad94da752045e1392d42dc00afab4adbf7a643264ce4f27bb 3 | size 118574 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2abb9d5619eab0fc0bb590e48983028c9d90ba5524aaa7b2722bbaf20ad7deab 3 | size 74962 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2abb9d5619eab0fc0bb590e48983028c9d90ba5524aaa7b2722bbaf20ad7deab 3 | size 74962 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11ff836d0ad3a4befa5ef26a817fb2459abb34f51a0535b6060dda103dfab666 3 | size 33659 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Preview-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:11ff836d0ad3a4befa5ef26a817fb2459abb34f51a0535b6060dda103dfab666 3 | size 33659 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a73ec142959e94276bf5aec884f12cb1d01b0e78e773e241b2768d9849fde1be 3 | size 101057 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9e8f02bdd40b3a368b44f6fdb1e148d9fd9bade35dd301b357bb3f5af897e57a 3 | size 105680 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07a2c999c1f64657b6dbe6d021a697ccf061e4e586924ffcc312029a633c4c88 3 | size 56443 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/pollView.Undisclosed-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c4405c6ca3987e725744db4e71ae0c2fb98474213fbe7388f1e9605027b801c 3 | size 61195 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Cancelled-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a8423b3e6e027d5d499f3f4c08d93be1f05ed713e20d64d90220510b974e66a3 3 | size 100521 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91b1af31e44340d57cd9a37f98a3b98b0288d3d725daf9ba51b8053b0d2c2da2 3 | size 98450 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Declined-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:214d5daf3ac74c66101b07cb773c0fcf38c5708337149e801ff94e3091d06bcb 3 | size 104737 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5522d7904ea153babcf025ee3cbf937e58539fb6bbe1414538f6c8e64b3b6628 3 | size 101949 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Expired-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:770ffa19b4c3a0b3575cadd525ca3edde85b25209e5032139f0871dec56c49e1 3 | size 110608 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:609406094108264b36f60a94c62f1a97970326423fd65b514b945b240922b39c 3 | size 145760 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Initial-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee23abfa2520aa0daf7e71620fa98a5cc9039eac6678b9dd7fdc0dd11fe1319a 3 | size 179265 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:910b6ca782bebf512ff7f2c2bae5fe154b88a4cbea310875b02d82adad0e3182 3 | size 117229 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Invalid-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:fb9450fa8dcd6c34b1a0d708ddb23aac4c753907fa7d3e35b7c4eab3d292f00c 3 | size 122500 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ab48a61edf64352376975a369cd30c011d75c1e7d430147bab7a79ac210fb8f 3 | size 97966 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/qRCodeLoginScreen.Scanning-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2021b7027e9d2e5bd45f281a65601fcc06bcba950b18b45956ad019595531f58 3 | size 98876 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0a525081a32f80cdb362055bf1fb85bb94e36ee4f8eda0fed3348a66c31863bd 3 | size 156020 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:17732eaf6452abe88755241d6c08304f1732d0bfd5545d580112ab9f23531071 3 | size 156140 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:190f8ea7d63ff14e77714718feafc1e6d777f5eb2abcaa65849ec1c78d763776 3 | size 64131 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reactionsSummaryView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ccf83508eff98903ae25de15107818345cef052868b1b5854ab4379e470d0c68 3 | size 64217 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/readMarkerRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5bb588cc5b46bc0b7c67a2f8b8a174b36705556466ed38039e2e15103469d841 3 | size 95654 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cf59668db3a3c440758587a13abab96ea5623ab5e7bd0d9aea01b5c4beab76c 3 | size 74267 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.No-Image-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4cf59668db3a3c440758587a13abab96ea5623ab5e7bd0d9aea01b5c4beab76c 3 | size 74267 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a405153f3d6144ed7ee62dfdcbcf54f146b839c10ecbff017c56e338cafe7b4d 3 | size 85654 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptCell.With-Image-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a405153f3d6144ed7ee62dfdcbcf54f146b839c10ecbff017c56e338cafe7b4d 3 | size 85654 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2c222996a35c1158d1dfebd7db8709345d542a722769f2232fa185d7e3067ab7 3 | size 124411 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/readReceiptsSummaryView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:006b491e50c2e89c30e656244bffeb118112cbce1d753a75c53be6dd429695d2 3 | size 124751 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09577f08ea4a26ceca9efb32a98ce33c51670ff93256d509504591c0b22a8945 3 | size 77351 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/redactedRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b37a9f4d9e6979c87533bf8ebf66c06530d1a3ca11c3d88f3d6a434610ae9ee4 3 | size 78520 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:075c0fe72d9a9e986fafba95c23c1e84c618f0fc237eaa6f674ee2cc90278479 3 | size 123244 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b380c62be4ba81ab2d8801448b74ee931fc45468d51cdcc7c0476e47d3f9dab 3 | size 145087 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:92f99285a82a0cdf5f5e51ed9ba06ae123adefcc63f3f7f6e3e5edb7857ecdb6 3 | size 77001 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reportContentScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e40a9c797d9774e04f77d4416acce9af609bff191b3783997e34467d21d20895 3 | size 109025 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8e5baed17a92e79e8e318646e04eaf1afb2d7eb3ae536eb113c603e660dbc8d7 3 | size 111296 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:478064a45b1a2e85a3a1d6a8be9678bfbce68a250023bd99bf1b54fd942fd883 3 | size 126220 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:909fcf1c5e767941cf0f6173fa0c839e6e8a3f1cf38959ea70622e0f7042be0a 3 | size 64555 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/reportRoomScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3cc741867de261b724069c9eff788c1dcf827a828c131b987d48bd2954b4b7e8 3 | size 83721 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1744288d87b83a7c03961f34fb9a812d897aed7a892260c8fa35d76b7904895e 3 | size 67530 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1744288d87b83a7c03961f34fb9a812d897aed7a892260c8fa35d76b7904895e 3 | size 67530 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7b036e97f1eb77338589fdb60912b37467e022e70fcaefc8d426fdaebbd9532 3 | size 27242 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomAttachmentPicker.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a7b036e97f1eb77338589fdb60912b37467e022e70fcaefc8d426fdaebbd9532 3 | size 27242 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1896e5328d738494310900bf5d0f4a7441bb70f91103a20bce20ca064b6e6d5e 3 | size 103499 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1896e5328d738494310900bf5d0f4a7441bb70f91103a20bce20ca064b6e6d5e 3 | size 103499 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d84daf5a9f2f6caed69fca648e8f677b3a1055f238d482bbfd7ede5769605bb6 3 | size 58978 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomAvatarImage.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d84daf5a9f2f6caed69fca648e8f677b3a1055f238d482bbfd7ede5769605bb6 3 | size 58978 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:529799dcc4f91d062a2188a8f895d0955de591f4f50141c706715594d8061679 3 | size 133841 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomChangeRolesScreenRow.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a68b84f0d3cd4698ebe1cfc10858d3deb5268f075091896e399fb386ce4d1655 3 | size 135278 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b747f2930614e345f3f9e58d27d4c48ef35a4573e435215f25d16f164de853f 3 | size 239213 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomDetailsScreen.DM-Room-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ee1e30305b4f8f1aa16c8654cb03d1c7ce33441649fffabc63ac87ac7b831b77 3 | size 244131 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4099874c091e58ec03340f2cb95a94537a34564f75d3747de4465746cf81f0d 3 | size 151367 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchCell.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4099874c091e58ec03340f2cb95a94537a34564f75d3747de4465746cf81f0d 3 | size 151367 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomDirectorySearchScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cce47838a62b5b6ec271b0dd9549f4c692f1748ae58c191910e35f4e359d6a8a 3 | size 100519 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc0cdc8acbebb3c2baadb2bcb4c7ee71cec89f39453e839e11fe782df6948c93 3 | size 73716 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc0cdc8acbebb3c2baadb2bcb4c7ee71cec89f39453e839e11fe782df6948c93 3 | size 73716 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e976095d663adc5bd9d2efaabea7428964578f46011e5b5064b3828dac0b939 3 | size 56159 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomHeaderView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7e976095d663adc5bd9d2efaabea7428964578f46011e5b5064b3828dac0b939 3 | size 56159 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:33fd6bfa371baceb2961b083e6e54a6004178ad699daf2b124aa342e3fe5b491 3 | size 109798 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9572d156ad00d2a3267dc4df8f1dc32451109c0a52a4cc971a90bb0dae290a9c 3 | size 122599 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b14bba635eea94b7b19de1394d00ca5dba271b7f7ee632dd47ebe352f7a3c93d 3 | size 65003 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomInviterLabel.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f4d78ca9ebd230551fe8a1b67b61a9c3097356dd626618c604d7c2909dc4ab9 3 | size 80634 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6aef9b852a17b388c55f255c714a6e1f33d287401aed131198e1a12aad5ae171 3 | size 71442 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPad-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ae83af6ce9c9c917f0bb8700314049eec870be40b2d9937d58f4aba5bdbdddda 3 | size 70422 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b4c68ba96ee3915fc4ca1f47c11077c8d5888a886dac27f0c0831f350866ddb6 3 | size 71093 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPad-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7ac729da7cd7a56fd56eaf8e29de0cd8a961cead30364a7c972fba2208c7535c 3 | size 70063 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0e0dc080002ef87fe30502a4954dd118b1f7b17cff0da75aee4e2725828294f3 3 | size 30992 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2dbc609b3d6dfb7d59d15ac9256495b57f7d432330b35db8da77af665b327cd 3 | size 30261 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d63682d90a5a54a76f03c4bb9315784e2e73a82a2d5f6389013bc212eb3e023f 3 | size 32974 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFilterView.iPhone-16-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a9964a51f3463d546b448f1e297cfa799299534b1308d8d882c21d1f64031b95 3 | size 31912 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0446709fcdaf2eb88fb66a2dea0189d283a9547c352999465eba7d2d7d519d94 3 | size 77975 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a5fd46a399d6e4f925004ca1ddaac8f5b4178783f56966a93a292b51c198f3b4 3 | size 79597 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:20b36970120ca4fa32777d5840b49fc72770a54b5e9e9e8d525fa9b8033a4c20 3 | size 80077 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPad-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c2807c7d75231d9838c6e930645671a6f9eaad6e8e45a02675728998c805bd4f 3 | size 80651 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3dca38d0a7783485fb9a81be7fabd20d575c1683302f414083b4e2285d23d2ad 3 | size 36371 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1e9a2b76583c8a9725cfc154955cbd88e178664294152aebc82f39dddba4d638 3 | size 38460 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d25432a37a41bb8d169efa057e08d8279b9be302c5e50a9325e517fe28b61419 3 | size 37206 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomListFiltersView.iPhone-16-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5723fb0f2726284ce39ac49c6ff1ef7faf809862fe98e4262e742c1c5f98acbf 3 | size 35427 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomMembersListMemberCell.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c7875cd627faa43cb1af8dfdb5a6c3fd4f3a44f2174285d4d80a55660b3f94ee 3 | size 172245 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:072123b9dc8efb1766a0473bbaac4da41ca3753c498414174f7ed4498c7f4323 3 | size 296283 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b5603abfd37273553075d1aa62ef6dae6485293e740481d3f9cc0892b53c069 3 | size 304438 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c31f30c2bb523cd9287eb7170f37db685e0338f43c86a20593df71e9b39a406b 3 | size 181787 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Normal-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1918575107e893df7a5c8d824e7d84f193bc95396dc9a70befb9035e2c15cc69 3 | size 180198 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:30073fdf3797dd70a1a9a39301e355e46d78ce4ed064215e2222ea1e3ac4eff8 3 | size 296108 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c8f9d9ad5dfe6a949e392eb6a2014a26fa1c99dcd1609eebacf9fa3129f1ced 3 | size 306552 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bcc07c762ebeab3cb9de5c0e516fb47704a7309e28c6bbbd335e07692e55ccfa 3 | size 182334 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Read-only-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc29ca8433a626ddd150d7852483179592bfe060f6290e6b94820b4b59544eb0 3 | size 184921 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:42ce084b1cd46ffd146b54c669bae1fa6f842e02e9f840ae92972af4f035ba3e 3 | size 352872 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7d73de09a9fbe543821b29fa1261d5175e3a0d994b90e21b71157bd05d463a48 3 | size 365960 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:816d2ea7bd4c6653e9c27a7735575ba05890a5f16d39d3d38db344a10e8c0ce9 3 | size 205525 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomScreen.Tombstoned-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2a46c473e05f8b8fa538e78dc0bf33ba3867fe5b7a33fc2be325bfb75e7cd688 3 | size 213588 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:348e37e04af9dc3297e28c01a33176594b63d01a701f16a1e3278666d4ffd41d 3 | size 167050 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:29acfd6916630e8a47dd3fc51eda53a0f3fbb0af609a72ceee08a7db5dec2396 3 | size 168533 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:993b6d680dd7fea259ab9debaeb45e5ee4fd58c0f029f87446692f5010eeacf8 3 | size 114591 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/roomSelectionScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8eb5e58c5cdf0000578dbb5cf2185e80ba1bbf95e418b29bc850e9ba5eb05864 3 | size 115891 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49094a594b13cc5b0308b4e81f53ee88a36c4179fe78cb8b09fec8e7d99cb2f1 3 | size 67159 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:49094a594b13cc5b0308b4e81f53ee88a36c4179fe78cb8b09fec8e7d99cb2f1 3 | size 67159 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8bb905e5cc50d1ebc474af6f79c3ff07f1d3222d1cdaffd5455d35b3ba57211 3 | size 43903 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/sFNumberedListView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c8bb905e5cc50d1ebc474af6f79c3ff07f1d3222d1cdaffd5455d35b3ba57211 3 | size 43903 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/sendInviteConfirmationView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a90a6bd5b50f0c270996ded0adb491039f8cd6dd696a52246fd7e091dd505ba 3 | size 96683 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:636a442cba297be374f443969984fdb2dcbbf1c1cdc567165bea6031a9986561 3 | size 72119 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/separatorRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4c244c3d942e34e4a54a07fef6d90f8e6b292ea4f8a79d88c14dd4a38ea0e8dd 3 | size 70977 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:91fad44e7f4156be3ac302bde23a2d4c2045e4243af4712e7d422ff5318e4814 3 | size 105276 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5b4ef513ec1efa9b66302c8748759a9b5871678bf2be368b590521b715383cf4 3 | size 102669 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-en-GB-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:088d128f6d0fec4d7ce3f5862c7da00d86e690fc9cff95777239be875a158977 3 | size 119824 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:269982e13659ac47e61229b2a9662ce5e9d3e9f71da54bbbdd01aa09ad18ee4a 3 | size 113980 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0ff77c73693f717b6a67e2840af7c59c73cfcfb5693a30409f0fdd9a503f7072 3 | size 111453 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPad-pseudo-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c58f51f3b05b4c7ebfc2b358b99cb31870a5832d9b068675d8caa04b6638eb9 3 | size 144815 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1b9ea475ec78bcadce063dfec67776c759fe2344d37e7a1ef55e326918fbf101 3 | size 60764 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df9109a3e62b83ee6be295b6f07cf674a0668e46702ca32fb1626bb2a7d50955 3 | size 58559 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-en-GB-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5e20ff75e2342297fc2bf69fc066a7a8b8fd1508e55912b894b83917e7483381 3 | size 78217 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0bd1517c9522bbe67ad85c39c9b6bb1224a2db70d49a56f716cff387c68c2020 3 | size 73399 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:afd6c97122695d38bf2cff97447903c6fb8b2d8d3278d9330f24f1add2152523 3 | size 71341 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/serverSelection.iPhone-16-pseudo-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e4bc71ee3623c59cb84540fc60d7b7c583e9d4e371281dde34453d455ecb670e 3 | size 110929 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/sessionVerification.Verified-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:87585ef3432d153e1ea82ddaba1fc6a80fe07208997b001671695e4295783ca9 3 | size 93013 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:df937f8fbee24daf78f83310fda04cecbaa46a0138717a6b9dff637ed3b4e675 3 | size 161130 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:680feb663bf4c1157a62b7c5ba81161368e6f2e740f862aea2d6a3a1bd43c103 3 | size 167872 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/settingsScreen.Default-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2ae451c9873060a79d7653089af4823cf5cf686c7c47d3b68d52de0545b27b19 3 | size 107060 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52af06c0db290c3eb0f54e2e12ca8d6abf200d40142a95a7d67f76e2bbc46f14 3 | size 87793 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:52af06c0db290c3eb0f54e2e12ca8d6abf200d40142a95a7d67f76e2bbc46f14 3 | size 87793 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14ee384a501956fb548a72e6603f110f71aac9923bc5bc0134bda4057f73771f 3 | size 45202 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/shimmerOverlay.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:14ee384a501956fb548a72e6603f110f71aac9923bc5bc0134bda4057f73771f 3 | size 45202 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5ef2dd67c1a888b56f7c03e83ed2db09097ec4497f15ea3af49bc1162cf770df 3 | size 149286 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f66a1bb759c56e7d1c1035ea0332c0ee782185bf83a0989f47c6ea4e54d4a356 3 | size 146631 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9fbea5e70977e02ebb1457061f325c8209d4616d5578f3e0e90676f2d1e303c7 3 | size 139370 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:961e7ea266fd50daee4c1b8555a977c5a248a460dc384ed861e1586d0e440532 3 | size 152019 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-en-GB-4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7b1dc99164aa05f2f36cc4b61fd0a840370c5a7ba92ff2c674d4d509265cb5b5 3 | size 169401 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:38dfe4b80ca5dfc16a6a83b88dc52c97082b9f48d906322a749b7e7e19d59de3 3 | size 192141 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a6d7d3d2261ca45251dce7c7f6aa152660dd6dbd814cb908ee096841a523f0a6 3 | size 189144 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48f561df9406198da8278a55c61d62ab7e6e891435b551862db251dcf8477b79 3 | size 181495 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c298ce42b13d5dd8d7d319d865f4b81de780610071096359da87dc843b80a6b5 3 | size 212050 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPad-pseudo-4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:03428bc03ada73eeb18821cc892a01cf50bd2785efd35ff647825c922408fbfd 3 | size 231459 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f85763be5974fe4c541a217aa766879328817e281f2694d9f0823e32afea8fb6 3 | size 105945 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:374a3b83ff1b056c4910163a7d302222151579664f24cfd054abdbbcde9aa31c 3 | size 103810 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:35fb5d9b9bc9cde46d3b7f405145d41bea8883ab6afd031898f03cb81a15130f 3 | size 98348 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:136fa4eb818e3d66f45c9d3ccd5f677720ed4c0e9a1cb2686d3d0e38fead229a 3 | size 113548 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-en-GB-4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:917b986b7ea4279ca09f303f427fff5dd91be1ea7bbe73e5c9f2739e832d68e8 3 | size 129633 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6700cc53874b15b5be1bc2aef7c4bee56a6510a2a1405cde10079f7b90a86838 3 | size 155364 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9154deb887b16c392c0729713c4a91bc706ddf2d57a585365e6da6cd7d75a69f 3 | size 152449 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:7633743a05be7107ab5b2e87508b96bfe414e13bffd03defe521e3efd5cfc9dd 3 | size 145041 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6040f1e1ef127ace8627986a5cfc27087dada9bfa1435f389586e3ab192d81d 3 | size 181132 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/softLogoutScreen.iPhone-16-pseudo-4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:37c052788229991567f690c081710de7abd184a26c7522890a4d8af77e95557a 3 | size 179266 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24256549ea978118792cd25d2c3ca2259b03785d9acd5406d674e4e36011d3f5 3 | size 65358 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:24256549ea978118792cd25d2c3ca2259b03785d9acd5406d674e4e36011d3f5 3 | size 65358 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:572fa5b7d347a9a67a16efa6df686bd47c04dc63f86a78c8cd756d4e8ef788d4 3 | size 25205 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/splashScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:572fa5b7d347a9a67a16efa6df686bd47c04dc63f86a78c8cd756d4e8ef788d4 3 | size 25205 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2cccb8af5d3b2f9caaa29584364834f3c58685da13e7b0ed9c305b9aed08954 3 | size 76364 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2cccb8af5d3b2f9caaa29584364834f3c58685da13e7b0ed9c305b9aed08954 3 | size 76364 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ccd3bb00ea04f0482ad6fe087b3421eff7273d5ffe659b13d26b079486f22ce 3 | size 35126 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stackedAvatarsView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4ccd3bb00ea04f0482ad6fe087b3421eff7273d5ffe659b13d26b079486f22ce 3 | size 35126 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4b196b0c7ef95387b7e2643e421a7acebec2bd26a4320c470d604f9710f3a1b4 3 | size 114304 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2f296669d40a83c27c5ca06428a7e0e42606a39ea0c9b8ff622b62fba78adc25 3 | size 121582 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5d6baf08670cc76a5522c8b99a9c83aa25e78c4ed7ecb168b63618830e1a0669 3 | size 63935 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/startChatScreen.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:07e29fb97f007495dec1a3635dfd8185d6a38240dc32079cdeba13d25905c93b 3 | size 79420 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1907a477019df9d70be5cf12e047ac8977a87f49cbb7a25ff37cff92c3b5bf1c 3 | size 69421 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1907a477019df9d70be5cf12e047ac8977a87f49cbb7a25ff37cff92c3b5bf1c 3 | size 69421 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stateRoomTimelineView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5dd0f8c4ff0e8b984101d698fa832cbad9053a41630344d0e96612b7ecbebb87 3 | size 28712 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ad04d0b7d31ee2b4df6f3a6f4a1df5b0884454f4e171558dbca8ea9cb4014bb 3 | size 2264520 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/stickerRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:47965f5fde09411c582e345f2bfc1a32dc794ca7f4cf3334ce8173d3c8fc6411 3 | size 2259069 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:757eaa2c262ef6217b62b55bde424a7d26efa8db632956003c503a04eb35ebf1 3 | size 82883 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:90ce8d0ce47578fcc75c13cd6fc2794b4854e5ecc1a9c76e6b78a7837de659d7 3 | size 86648 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f05c62690e9e8b3e89a5da3e18b7713f0ceeeaa25a635c56e5a19c58c66479e3 3 | size 43757 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/swipeRightAction.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:704b1ff8cf1fff2a3d46f6631031c2eb1b70ccd5d4deb9c57e4a5ae227e9784b 3 | size 55271 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc2c6fd72c6e09e5802d88b7e03c93750b07cf7f9a09661caa7de7b91fa529cb 3 | size 67239 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cc2c6fd72c6e09e5802d88b7e03c93750b07cf7f9a09661caa7de7b91fa529cb 3 | size 67239 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ddf37cf721cec023c20ef7aacced5b0d1bec3e64fbcbb36e1d18a1726a145a9 3 | size 26166 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/swipeToReplyView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9ddf37cf721cec023c20ef7aacced5b0d1bec3e64fbcbb36e1d18a1726a145a9 3 | size 26166 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/textRoomTimelineView.Bubble-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:445275865d4a492749e691e8c9314ab83d76d5f8ac9e4f1772b581e27b7421e3 3 | size 169498 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85f7af5e90451166b776e9365466826f36b7b25d94b19307b5e9552836b17901 3 | size 68519 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2d97da015281e33559f816427a2e66259330590cb76f40d5d204b9efaf91310f 3 | size 69685 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d0326fadef8717ccf65e12dd848a67cd88c21c1655ca3e1c5ba42fa24a9f5160 3 | size 27929 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/threadDecorator.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1daf7c49dc0467ccfa1ef89b64c0d9e61fc738e2f409f4f30ceb286e3983b9fb 3 | size 28636 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineDeliveryStatusView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3a676ef1567dd0e5de9379629dc6d9ff405d6b2714895c9f8101991f1877a205 3 | size 68339 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:bedf892ad453c0e2d6a157fc3a38a7cf964e2509d3e24885c7b31683aa46a979 3 | size 113653 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:752f6b8424b70f58443df241049e7e2706836d94d81ff73b14b460c048c3d6c6 3 | size 115193 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemDebugView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f8122c559a90fd4425a7117960fad021482fa2c93585a72f6f2814d619d7bf2d 3 | size 69384 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:4bcec8a4b2f591f2aa72c7b3ff428cff33004abf04f2495a6767fde08a50b77f 3 | size 132419 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dac73a9116229764048fb493909ff4a31ffd5cc14bf488cdf4892636293f8472 3 | size 136684 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:82520de4558f122c5e1df9131f4fac0d69d0c84c7b1562acd5cd860a82158665 3 | size 86671 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Media-iPhone-16-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8b29baf5fc2e58575ad8a6d3fda432bea347edf1f33e0fe892d491e1b3f6a0d3 3 | size 99523 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e48013d553548589417a8f332920c4afe24f7436a4765696452d961c22e9112a 3 | size 135147 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:23a1e63f5201e6fd767be5a9e3467c484091aa0d64bb7c0d8c86344934094f1e 3 | size 139586 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Normal-iPhone-16-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:85f036d3116fa4626062ff973ac3f6a3a07bc1ccd42b194afe8b82d9c581e1d6 3 | size 88902 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b3499eb6988593be4fff591819343b72959b6dee897f3b99326065ef6f9b0f74 3 | size 144569 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemMenu.Unsigned-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e819b9a0e696d0b882dce52f6759963ab410c3ca7d8cecf445033bb5cd962f88 3 | size 152985 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9d1903ddcd00dc637ebee2d55038c6b9415341bc0f1ef46d2432c47ecd2ae2b 3 | size 81888 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemSendInfoLabel.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c9d1903ddcd00dc637ebee2d55038c6b9415341bc0f1ef46d2432c47ecd2ae2b 3 | size 81888 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPad-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2569c5fd2e000ada8a88561455b9fbc7fbe0820a8a48fd32914d1b73c189526b 3 | size 92964 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineItemStyler.Bubbles-iPad-pseudo.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:41a8f737d9819f8583c2d120237ef3c47c59c1428b61351f65472130ae7d9696 3 | size 98256 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f566420692c72e8f238606cea0fd954ad37d3f2409b717216543d10b6751eacf 3 | size 159161 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:2632555ff1f7309571615b0b8850aeba8858c9892e1a7eb7e9aab71a1d485f13 3 | size 150357 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39dcaad52c52a80de4f355b8fd45931760e3ae41dd5eca73d526a5f57d737dbc 3 | size 106680 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReactionView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:58afb93595ced1c8d63b3039b4c4472445ca472a58418cf88a252fe676b80dc9 3 | size 98835 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3832d15395990ba70d725f952594ba8525ae4d6e34b0c94a3518c1498c629ad7 3 | size 74883 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReadReceiptsView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d4bf1c97977129580a538593b9a418855a7293040b0f98c4c86eaf52f89922b3 3 | size 75388 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b9ef6de65b855b786c3973dd2d19b98500b42288f0fa0ad270fff58cbb2b87b 3 | size 211786 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1f2f9509ad4173efbc5d31cd36e2090c4ef265556b512ba581d50bc419eef667 3 | size 219356 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c5a3d15cb45d333c8262de10a8503b418b0df28b37922f569e5b5a1e67132450 3 | size 148474 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineReplyView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:8bfb5dce96a9bab1b0bf4ade63aaeecc90879618e29f7f23defa63e0be473957 3 | size 153708 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineThreadSummaryView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:def40a09d9521734f58296a959107a0cb5d8dd3ad8ea23dc6d01dfbf298aba93 3 | size 215724 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:072123b9dc8efb1766a0473bbaac4da41ca3753c498414174f7ed4498c7f4323 3 | size 296283 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3b5603abfd37273553075d1aa62ef6dae6485293e740481d3f9cc0892b53c069 3 | size 304438 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c31f30c2bb523cd9287eb7170f37db685e0338f43c86a20593df71e9b39a406b 3 | size 181787 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/timelineView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1918575107e893df7a5c8d824e7d84f193bc95396dc9a70befb9035e2c15cc69 3 | size 180198 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da0585b2cb692b7a8560c0b7953bfe6c6a0c3c93b900ac0d22d0f2263fc01742 3 | size 6601 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da0585b2cb692b7a8560c0b7953bfe6c6a0c3c93b900ac0d22d0f2263fc01742 3 | size 6601 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d29a91cf15e22b917e43d2343dd092903144193687d4a6bb94c50254806919da 3 | size 4044 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/tombstonedAvatarImage.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:d29a91cf15e22b917e43d2343dd092903144193687d4a6bb94c50254806919da 3 | size 4044 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:84127273b7dda8725b04de646fd6315bd3e005e8e356a60dedb8de30735258f1 3 | size 105046 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:65fc7565a8ed957b285ff507dd6647e7c9b90773a33e7fe8172f39585e689690 3 | size 113991 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:da8cd343a022dc76acd84e905dd9e2661daaa01efffff9bb622e0e939c469d2b 3 | size 59231 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/typingIndicatorView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:05bd5811e9e6551e6f4fc64af5ce635b1b6cf4a7efd98f9570c2a53c56ff1834 3 | size 66258 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b80f7fccc39e2f0b27559a63768a95a68951e038d278bbdfd20a234df84f32b8 3 | size 103667 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:88af4b69ddea5faf65e4d36e5553c1bf0cdc9095f3eb31fbb6fc9e2933bd1dfc 3 | size 105771 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userDetailsEditScreen.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c6770b25d3438b9557a55e14a7ecb00b91fa0cc50d22c2115ccf5694bd97576c 3 | size 54862 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a1ddb695450412ad2cea3b0109bb944319a3cde7f6b5fa10b5b66e39b484883 3 | size 98613 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userIndicatorToastView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1a1ddb695450412ad2cea3b0109bb944319a3cde7f6b5fa10b5b66e39b484883 3 | size 98613 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:09c375f314f98b32d97b6cd90bf63a9d34a84c568b5e43e200d92e4449c8a5bf 3 | size 136045 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:63aec1964adbc232455dd679654d42d5c8896cba8fd0fa8941e2902eeac773ce 3 | size 144073 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b3613401579464aaa90aca510c5438aed017f064e1761d9c01cb22eaa0969e5d 3 | size 82553 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/userProfileCell.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:946460ea76327d9b6736a2ff6d8cde4a7cdad0cb3cc9dfdc227865faee09f04d 3 | size 95519 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba43a12f28030b22c78db9d14d506359022cfbc8cfafae87d8283f002d3038b2 3 | size 6599 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba43a12f28030b22c78db9d14d506359022cfbc8cfafae87d8283f002d3038b2 3 | size 6599 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48bbc5497a120c96637a8ef502a2f07a97ec5f474ccd0cd198117f1690ec5682 3 | size 3768 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/verificationBadge.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:48bbc5497a120c96637a8ef502a2f07a97ec5f474ccd0cd198117f1690ec5682 3 | size 3768 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6c85bc8e7ade639bd6c76a63ecdc29469cc4eb0d26a7f56ff9ec1090bb6dbce0 3 | size 5299493 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/videoRoomTimelineView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e80a2775cd0db1e832fe298f410c99629dd3fbdd4920ca01f3243cd1a1bca88d 3 | size 5291439 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9cac17036704df924eee98ae0287d231dceedca6ceee8ba990d4acb4d377f678 3 | size 110821 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cd981618a53c74d5f3ee0c4bab370b4e431c760e94f1a97af742e2a82bc25f43 3 | size 118491 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:a3734c22ad3f2a59633b28043fca8dee4038376e542b043ab05fc00fd93be364 3 | size 71605 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/visualListItem.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:c688ca29c8ed4a490f20e081323f4ac300c9addf2a05662cd52d98f312f1b872 3 | size 85945 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:103f5aaea4dec5dc620da733c0db5dfe19da76b93e76dcbf681931198b383ec4 3 | size 74696 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:103f5aaea4dec5dc620da733c0db5dfe19da76b93e76dcbf681931198b383ec4 3 | size 74696 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3865e24406e33a024fbedad3903d68612de31b7cced347888d83d4a566158d7c 3 | size 33502 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageButton.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3865e24406e33a024fbedad3903d68612de31b7cced347888d83d4a566158d7c 3 | size 33502 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99b7ca0de4fbd7778001bcc5fb9a8ebbaa891154317dd83b46147c12c9110dd4 3 | size 68171 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/voiceMessageRecordingView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:99b7ca0de4fbd7778001bcc5fb9a8ebbaa891154317dd83b46147c12c9110dd4 3 | size 68171 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPad-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27dfcfcd992f7ad76fe6f961c330e6e4da00be5ff6e0705da1f59a50e78bb354 3 | size 66620 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPad-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:27dfcfcd992f7ad76fe6f961c330e6e4da00be5ff6e0705da1f59a50e78bb354 3 | size 66620 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-16-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:843025dff2e314176369de2775c9ef7cc132190d64a055e772673e8467eaba0e 3 | size 26120 4 | -------------------------------------------------------------------------------- /PreviewTests/Sources/__Snapshots__/PreviewTests/waveformCursorView.iPhone-16-pseudo-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:843025dff2e314176369de2775c9ef7cc132190d64a055e772673e8467eaba0e 3 | size 26120 4 | -------------------------------------------------------------------------------- /Tools/Sourcery/PreviewTestsConfig.yml: -------------------------------------------------------------------------------- 1 | sources: 2 | include: 3 | - ../../ElementX 4 | templates: 5 | - PreviewTests.stencil 6 | output: 7 | ../../PreviewTests/Sources/GeneratedPreviewTests.swift 8 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPad-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:180743191fcf9af0de19525e3fa649e89cb24c9e5be1cd77b6da96272c71aa14 3 | size 66254 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testFlowDisabled-iPhone-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff7b6a42a6a36f2f9f717bc967bfd78d758fb3ce8b4a3d16220a2211fd24f61b 3 | size 57129 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-18-4-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0dd48f840328c7e711b5c8bc749de2a5846ddefeee2805d17e7317cb6c04b3f2 3 | size 1381038 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-18-4-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f17a493508ec7c8d7a3608e1dc17a134bc20d3e891b7d386e3a989175850bf04 3 | size 107079 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPad-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1246f8b0f5a56918a8a0dc11436fc44f981eece24b8876ebce1ef9922fd93d67 3 | size 64833 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-18-4-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:39d24a63499d5230527abae3671cb640570a361f43dfd19f2244c43e8d48a980 3 | size 1106309 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-18-4-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba85903b9410ef1799d981b18354474f265b23ada14c616402d7c777e7054bbe 3 | size 119199 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testFlowEnabled-iPhone-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff7b6a42a6a36f2f9f717bc967bfd78d758fb3ce8b4a3d16220a2211fd24f61b 3 | size 57129 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-18-4-en-GB-0.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:0dd48f840328c7e711b5c8bc749de2a5846ddefeee2805d17e7317cb6c04b3f2 3 | size 1381038 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPad-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1246f8b0f5a56918a8a0dc11436fc44f981eece24b8876ebce1ef9922fd93d67 3 | size 64833 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testResignActive-iPhone-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff7b6a42a6a36f2f9f717bc967bfd78d758fb3ce8b4a3d16220a2211fd24f61b 3 | size 57129 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-18-4-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f17a493508ec7c8d7a3608e1dc17a134bc20d3e891b7d386e3a989175850bf04 3 | size 107079 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-18-4-en-GB-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:93e676ab4e92ce0e3e74053bc92a1d40f21bf838f61b65d85870f358169e1a02 3 | size 108229 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-18-4-en-GB-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:cb5fe2b3a34ccae29a0edca430d4309375c6afcc783c07eec045ed999476e9dd 3 | size 245978 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-18-4-en-GB-4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6ac4dcb7cd838276d22502d7b3bdf2c656e8ec18cfa49f58b8e360147200b8c8 3 | size 119260 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPad-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1246f8b0f5a56918a8a0dc11436fc44f981eece24b8876ebce1ef9922fd93d67 3 | size 64833 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-18-4-en-GB-1.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ba85903b9410ef1799d981b18354474f265b23ada14c616402d7c777e7054bbe 3 | size 119199 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-18-4-en-GB-2.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:9c12efc3f647aad33d2acf44902f418d2defbc03f67bf07a15ffdc2438e60dcf 3 | size 120307 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-18-4-en-GB-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:10f6f648ae629a8b2b6b5f957a71a34debbfbe89327637dbddbdd76c9a79b69f 3 | size 387060 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-18-4-en-GB-4.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:f2372478a7214c51d2d8cd632a50069946fb596760edb579c8c806f07faec041 3 | size 134539 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLock.testWrongPIN-iPhone-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ff7b6a42a6a36f2f9f717bc967bfd78d758fb3ce8b4a3d16220a2211fd24f61b 3 | size 57129 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1246f8b0f5a56918a8a0dc11436fc44f981eece24b8876ebce1ef9922fd93d67 3 | size 64833 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPad-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08bd938da6ac04092d0845cfd5a68091097612b9905647c8aecda3f07c734532 3 | size 139697 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-18-4-en-GB-99.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3648ac4fc1c98576a3516afdf280a37c00e44d0c4ee1519b849291c34660aef9 3 | size 56204 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLockSetup.testCancel-iPhone-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fcf767875b6a67989634e7830ed8badecf5c2673aa5714b965f5a544273c5d7 3 | size 82724 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLockSetup.testCreateFlow-iPad-18-4-en-GB-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:ef84d325ff4f091c6e136f16416d90c3542ad358a70f08e4436ffd9946f5a999 3 | size 82486 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-18-4-en-GB-3.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5aed69f396bc913e16ec6b2d856361f9d7a7d42091815eddfaa4358e10ee4afe 3 | size 82002 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPad-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:08bd938da6ac04092d0845cfd5a68091097612b9905647c8aecda3f07c734532 3 | size 139697 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/appLockSetup.testUnlockFlow-iPhone-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:5fcf767875b6a67989634e7830ed8badecf5c2673aa5714b965f5a544273c5d7 3 | size 82724 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPad-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:6e2ab570b42fd68b0a6c1f9214586fc70991dd98b91c2e2cbb177b81584615e7 3 | size 204731 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/bugReport.testReportText-iPhone-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:1fbd75e8de7ff04d33cb312ddf6e5a84de3ab4e2a512b765985a7f7481383f41 3 | size 203560 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/createRoomScreen.testLanding-iPad-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:3486ce5d6c7e0e93f0488dfb6d43ee5fe70abeb730424a071e6166433681f6ea 3 | size 140127 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/pollFormScreen.testFilledPoll-iPad-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:657524ca3ea9c08c5fc601a2a646f339567d2a8e8c7e6de57623de7a846afa7a 3 | size 93651 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/roomScreen.testPlainNoAvatar-iPad-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:b23b63f0062303dd67aa232733dca8e024b2daa32feab5e17decfa607da5452a 3 | size 295070 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/startChatScreen.testLanding-iPad-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:e9be3686d47c60cbb5bc9a3f0cd6f195684eac639156415b6ec3199791437f5c 3 | size 89179 4 | -------------------------------------------------------------------------------- /UITests/Sources/__Snapshots__/Application/startChatScreen.testLanding-iPhone-18-4-en-GB.png: -------------------------------------------------------------------------------- 1 | version https://git-lfs.github.com/spec/v1 2 | oid sha256:dba6666f2c362ad26520209d90ed46f59f31c8aac16d1402c0f3bd105d1c8268 3 | size 94376 4 | -------------------------------------------------------------------------------- /Variants/Nightly/Resources/Nightly.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | --------------------------------------------------------------------------------