├── .gitignore ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon-App-20x20@1x.png │ ├── Icon-App-20x20@2x.png │ ├── Icon-App-20x20@3x.png │ ├── Icon-App-29x29@1x.png │ ├── Icon-App-29x29@2x.png │ ├── Icon-App-29x29@3x.png │ ├── Icon-App-40x40@1x.png │ ├── Icon-App-40x40@2x.png │ ├── Icon-App-40x40@3x.png │ ├── Icon-App-57x57@1x.png │ ├── Icon-App-57x57@2x.png │ ├── Icon-App-60x60@1x.png │ ├── Icon-App-60x60@2x.png │ ├── Icon-App-60x60@3x.png │ ├── Icon-App-72x72@1x.png │ ├── Icon-App-72x72@2x.png │ ├── Icon-App-76x76@1x.png │ ├── Icon-App-76x76@2x.png │ ├── Icon-App-76x76@3x.png │ ├── Icon-App-83.5x83.5@2x.png │ ├── Icon-Small-50x50@1x.png │ ├── Icon-Small-50x50@2x.png │ └── ItunesArtwork@2x.png └── Contents.json ├── Base.lproj └── LaunchScreen.storyboard ├── ChatApp.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ └── Florian.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── ChatApp.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── ChatApp ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@1x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-76x76@3x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-Small-50x50@1x.png │ │ ├── Icon-Small-50x50@2x.png │ │ └── ItunesArtwork@2x.png │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── ChatHostViewController.swift ├── ChatUIConfiguration.swift ├── Core │ ├── Adapters │ │ ├── ATCCarouselAdapter.swift │ │ ├── ATCStoryAdapter.swift │ │ └── ATCViewControllerContainerRowAdapter.swift │ ├── Assets │ │ ├── CoreImages.xcassets │ │ │ ├── Contents.json │ │ │ └── arrow-right.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── arrow-right.png │ │ │ │ ├── icons8-forward-filled-100.png │ │ │ │ └── icons8-forward-filled-500.png │ │ └── Misc.xcassets │ │ │ ├── Contents.json │ │ │ ├── activity-feed-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── activity-feed-icon.png │ │ │ ├── icons8-activity-feed-100.png │ │ │ └── icons8-activity-feed-50.png │ │ │ ├── analytics-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── analytics-icon.png │ │ │ ├── icons8-combo-chart-100.png │ │ │ └── icons8-combo-chart-50.png │ │ │ ├── arrow-back-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── arrow-back-icon.png │ │ │ ├── icons8-back-filled-100.png │ │ │ └── icons8-back-filled-50.png │ │ │ ├── bars-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── bars-icon.png │ │ │ ├── icons8-bar-chart-100.png │ │ │ └── icons8-bar-chart-50.png │ │ │ ├── bell-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── bell-icon.png │ │ │ ├── icons8-notification-100.png │ │ │ └── icons8-notification-50.png │ │ │ ├── binoculars-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── binoculars-icon-1.png │ │ │ ├── binoculars-icon-2.png │ │ │ └── binoculars-icon.png │ │ │ ├── bubbles-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── bubbles-icon-1.png │ │ │ ├── bubbles-icon-2.png │ │ │ └── bubbles-icon.png │ │ │ ├── calendar-grid-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── calendar-grid-icon.png │ │ │ ├── icons8-calendar-100.png │ │ │ └── icons8-calendar-50.png │ │ │ ├── calendar-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── calendar-icon.png │ │ │ ├── icons8-calendar-96.png │ │ │ └── icons8-calendar-97.png │ │ │ ├── camera-filled-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── camera-filled-icon.png │ │ │ ├── icons8-unsplash-filled-50.png │ │ │ └── icons8-unsplash-filled-75.png │ │ │ ├── camera-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── camera-icon.png │ │ │ ├── icons8-screenshot-50.png │ │ │ └── icons8-screenshot-75.png │ │ │ ├── caret-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── caret-icon.png │ │ │ ├── icons8-expand-arrow-100.png │ │ │ └── icons8-expand-arrow-500.png │ │ │ ├── check-file-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── check-file-icon-1.png │ │ │ ├── check-file-icon-2.png │ │ │ └── check-file-icon.png │ │ │ ├── coins-filled-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── coins-filled-icon.png │ │ │ ├── icons8-coins-filled-100.png │ │ │ └── icons8-coins-filled-50.png │ │ │ ├── coins-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── coins-icon-1.png │ │ │ ├── coins-icon-2.png │ │ │ └── coins-icon.png │ │ │ ├── customers-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── customers-icon.png │ │ │ ├── icons8-customer-filled-100.png │ │ │ └── icons8-customer-filled-50.png │ │ │ ├── facebook-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── facebook-icon-1.png │ │ │ ├── facebook-icon-2.png │ │ │ └── facebook-icon.png │ │ │ ├── forward-arrow-black.imageset │ │ │ ├── Contents.json │ │ │ ├── forward-arrow-black-1.png │ │ │ ├── forward-arrow-black-2.png │ │ │ └── forward-arrow-black.png │ │ │ ├── home-menu-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── home-menu-icon-1.png │ │ │ ├── home-menu-icon-2.png │ │ │ └── home-menu-icon.png │ │ │ ├── icn-fb.imageset │ │ │ ├── Contents.json │ │ │ ├── Facebook.png │ │ │ ├── Facebook@2x.png │ │ │ └── Facebook@3x.png │ │ │ ├── icn-instagram.imageset │ │ │ ├── Contents.json │ │ │ ├── Instagram.png │ │ │ ├── Instagram@2x.png │ │ │ └── Instagram@3x.png │ │ │ ├── icn-twtr.imageset │ │ │ ├── Contents.json │ │ │ ├── Twitter.png │ │ │ ├── Twitter@2x.png │ │ │ └── Twitter@3x.png │ │ │ ├── icn-youtube.imageset │ │ │ ├── Contents.json │ │ │ ├── Youtube.png │ │ │ ├── Youtube@2x.png │ │ │ └── Youtube@3x.png │ │ │ ├── ios-app-ecommerce-i-shop-onboarding-cover.imageset │ │ │ ├── Contents.json │ │ │ ├── ios-app-ecommerce-i-shop-onboarding-cover-1.jpeg │ │ │ ├── ios-app-ecommerce-i-shop-onboarding-cover-2.jpeg │ │ │ └── ios-app-ecommerce-i-shop-onboarding-cover.jpeg │ │ │ ├── logout-menu-item.imageset │ │ │ ├── Contents.json │ │ │ ├── logout-menu-item-1.png │ │ │ ├── logout-menu-item-2.png │ │ │ └── logout-menu-item.png │ │ │ ├── night-stars-wallpaper.imageset │ │ │ ├── Contents.json │ │ │ ├── night-stars-wallpaper-1.png │ │ │ ├── night-stars-wallpaper-2.png │ │ │ └── night-stars-wallpaper.png │ │ │ ├── orders-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── icons8-purchase-order-100.png │ │ │ ├── icons8-purchase-order-50.png │ │ │ └── orders-icon.png │ │ │ ├── products-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── icons8-box-filled-100.png │ │ │ ├── icons8-box-filled-50.png │ │ │ └── products-icon.png │ │ │ ├── settings-menu-item.imageset │ │ │ ├── Contents.json │ │ │ ├── settings-menu-item-1.png │ │ │ ├── settings-menu-item-2.png │ │ │ └── settings-menu-item.png │ │ │ ├── share-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── share-icon-50.png │ │ │ ├── share-icon-75.png │ │ │ └── share-icon.png │ │ │ ├── shopping-cart-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── shopping-cart-icon-1.png │ │ │ ├── shopping-cart-icon-2.png │ │ │ └── shopping-cart-icon.png │ │ │ ├── shopping-ios-app-onboarding-cover.imageset │ │ │ ├── Contents.json │ │ │ ├── shopping-ios-app-onboarding-cover-1.jpg │ │ │ ├── shopping-ios-app-onboarding-cover-2.jpg │ │ │ └── shopping-ios-app-onboarding-cover.jpg │ │ │ ├── task-filled-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── icons8-task-filled-100.png │ │ │ ├── icons8-task-filled-50.png │ │ │ └── task-filled-icon.png │ │ │ ├── three-equal-lines-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── icons8-menu-filled-100.png │ │ │ ├── icons8-menu-filled-50.png │ │ │ └── three-equal-lines-icon.png │ │ │ └── twitter-icon.imageset │ │ │ ├── Contents.json │ │ │ ├── twitter-icon-1.png │ │ │ ├── twitter-icon-2.png │ │ │ └── twitter-icon.png │ ├── Chat │ │ ├── Adapters │ │ │ ├── ATCChatThreadAdapter.swift │ │ │ └── ATCChatUserStoryAdapter.swift │ │ ├── Models │ │ │ ├── ATCChatChannel.swift │ │ │ └── ATChatMessage.swift │ │ ├── Store │ │ │ ├── ATCChatMockStore.swift │ │ │ └── ATCRemoteData.swift │ │ ├── Themes │ │ │ └── Messenger │ │ │ │ ├── ATCThreadCollectionViewCell.swift │ │ │ │ ├── ATCThreadCollectionViewCell.xib │ │ │ │ ├── ATCUserStoryCollectionViewCell.swift │ │ │ │ └── ATCUserStoryCollectionViewCell.xib │ │ └── ViewControllers │ │ │ ├── ATCChatHomeViewController.swift │ │ │ ├── ATCChatThreadViewController.swift │ │ │ └── ATCChatThreadsViewController.swift │ ├── Helpers │ │ ├── ATCGenericFirebaseDataSource.swift │ │ ├── ATCGenericLocalDataSource.swift │ │ ├── ATCGenericLocalHeteroDataSource.swift │ │ ├── ATCUIGenericConfigurationProtocol.swift │ │ ├── TimeFormatHelper.swift │ │ ├── UIImage+ATCAdditions.swift │ │ └── UITabBarItem+ATCAdditions.swift │ ├── Models │ │ ├── ATCUser.swift │ │ └── ATCViewControllerContainerViewModel.swift │ ├── ThirdParty │ │ └── SnapKit │ │ │ ├── Constraint.swift │ │ │ ├── ConstraintAttributes.swift │ │ │ ├── ConstraintConfig.swift │ │ │ ├── ConstraintConstantTarget.swift │ │ │ ├── ConstraintDSL.swift │ │ │ ├── ConstraintDescription.swift │ │ │ ├── ConstraintInsetTarget.swift │ │ │ ├── ConstraintInsets.swift │ │ │ ├── ConstraintItem.swift │ │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ │ ├── ConstraintLayoutGuide.swift │ │ │ ├── ConstraintLayoutGuideDSL.swift │ │ │ ├── ConstraintLayoutSupport.swift │ │ │ ├── ConstraintLayoutSupportDSL.swift │ │ │ ├── ConstraintMaker.swift │ │ │ ├── ConstraintMakerEditable.swift │ │ │ ├── ConstraintMakerExtendable.swift │ │ │ ├── ConstraintMakerFinalizable.swift │ │ │ ├── ConstraintMakerPriortizable.swift │ │ │ ├── ConstraintMakerRelatable.swift │ │ │ ├── ConstraintMultiplierTarget.swift │ │ │ ├── ConstraintOffsetTarget.swift │ │ │ ├── ConstraintPriority.swift │ │ │ ├── ConstraintPriorityTarget.swift │ │ │ ├── ConstraintRelatableTarget.swift │ │ │ ├── ConstraintRelation.swift │ │ │ ├── ConstraintView+Extensions.swift │ │ │ ├── ConstraintView.swift │ │ │ ├── ConstraintViewDSL.swift │ │ │ ├── Debugging.swift │ │ │ ├── LayoutConstraint.swift │ │ │ ├── LayoutConstraintItem.swift │ │ │ ├── SnapKit.h │ │ │ ├── Typealiases.swift │ │ │ └── UILayoutSupport+Extensions.swift │ ├── UIExtensions │ │ ├── Date.swift │ │ ├── String.swift │ │ ├── UIColor.swift │ │ ├── UIImage.swift │ │ ├── UIScrollView.swift │ │ ├── UITextField.swift │ │ └── UIView.swift │ ├── ViewControllers │ │ ├── ATCGenericCollectionViewController.swift │ │ ├── Layouts │ │ │ ├── ATCCollectionViewFlowLayout.swift │ │ │ └── ATCLiquidCollectionViewLayout.swift │ │ ├── Navigation │ │ │ ├── ATCDrawerController.swift │ │ │ ├── ATCHostViewController.swift │ │ │ ├── ATCMenuCollectionViewController.swift │ │ │ ├── ATCMenuHeaderTableViewCell.swift │ │ │ ├── ATCMenuHeaderTableViewCell.xib │ │ │ ├── ATCMenuItemCollectionViewCellProtocol.swift │ │ │ ├── ATCMenuItemRowAdapter.swift │ │ │ ├── ATCMenuTableViewController.swift │ │ │ ├── ATCMenuTableViewController.xib │ │ │ └── ATCNavigationController.swift │ │ └── UIViewController+ATCAdditions.swift │ └── Views │ │ └── Cells │ │ ├── ATCCarouselCollectionViewCell.swift │ │ ├── ATCCarouselCollectionViewCell.xib │ │ ├── ATCStoryCollectionViewCell.swift │ │ ├── ATCStoryCollectionViewCell.xib │ │ ├── ATCViewControllerContainerCollectionViewCell.swift │ │ ├── ATCViewControllerContainerCollectionViewCell.xib │ │ ├── MenuCells │ │ ├── ATCCircledIconMenuCollectionViewCell.swift │ │ └── ATCCircledIconMenuCollectionViewCell.xib │ │ └── Users │ │ ├── ATCMessengerUserAdapter.swift │ │ ├── ATCMessengerUserCollectionViewCell.swift │ │ └── ATCMessengerUserCollectionViewCell.xib └── Info.plist ├── ChatHostViewController.swift ├── ChatUIConfiguration.swift ├── Core ├── Adapters │ ├── ATCCarouselAdapter.swift │ ├── ATCStoryAdapter.swift │ └── ATCViewControllerContainerRowAdapter.swift ├── Assets │ ├── CoreImages.xcassets │ │ ├── Contents.json │ │ └── arrow-right.imageset │ │ │ ├── Contents.json │ │ │ ├── arrow-right.png │ │ │ ├── icons8-forward-filled-100.png │ │ │ └── icons8-forward-filled-500.png │ └── Misc.xcassets │ │ ├── Contents.json │ │ ├── activity-feed-icon.imageset │ │ ├── Contents.json │ │ ├── activity-feed-icon.png │ │ ├── icons8-activity-feed-100.png │ │ └── icons8-activity-feed-50.png │ │ ├── analytics-icon.imageset │ │ ├── Contents.json │ │ ├── analytics-icon.png │ │ ├── icons8-combo-chart-100.png │ │ └── icons8-combo-chart-50.png │ │ ├── arrow-back-icon.imageset │ │ ├── Contents.json │ │ ├── arrow-back-icon.png │ │ ├── icons8-back-filled-100.png │ │ └── icons8-back-filled-50.png │ │ ├── bars-icon.imageset │ │ ├── Contents.json │ │ ├── bars-icon.png │ │ ├── icons8-bar-chart-100.png │ │ └── icons8-bar-chart-50.png │ │ ├── bell-icon.imageset │ │ ├── Contents.json │ │ ├── bell-icon.png │ │ ├── icons8-notification-100.png │ │ └── icons8-notification-50.png │ │ ├── binoculars-icon.imageset │ │ ├── Contents.json │ │ ├── binoculars-icon-1.png │ │ ├── binoculars-icon-2.png │ │ └── binoculars-icon.png │ │ ├── bubbles-icon.imageset │ │ ├── Contents.json │ │ ├── bubbles-icon-1.png │ │ ├── bubbles-icon-2.png │ │ └── bubbles-icon.png │ │ ├── calendar-grid-icon.imageset │ │ ├── Contents.json │ │ ├── calendar-grid-icon.png │ │ ├── icons8-calendar-100.png │ │ └── icons8-calendar-50.png │ │ ├── calendar-icon.imageset │ │ ├── Contents.json │ │ ├── calendar-icon.png │ │ ├── icons8-calendar-96.png │ │ └── icons8-calendar-97.png │ │ ├── camera-filled-icon.imageset │ │ ├── Contents.json │ │ ├── camera-filled-icon.png │ │ ├── icons8-unsplash-filled-50.png │ │ └── icons8-unsplash-filled-75.png │ │ ├── camera-icon.imageset │ │ ├── Contents.json │ │ ├── camera-icon.png │ │ ├── icons8-screenshot-50.png │ │ └── icons8-screenshot-75.png │ │ ├── caret-icon.imageset │ │ ├── Contents.json │ │ ├── caret-icon.png │ │ ├── icons8-expand-arrow-100.png │ │ └── icons8-expand-arrow-500.png │ │ ├── check-file-icon.imageset │ │ ├── Contents.json │ │ ├── check-file-icon-1.png │ │ ├── check-file-icon-2.png │ │ └── check-file-icon.png │ │ ├── coins-filled-icon.imageset │ │ ├── Contents.json │ │ ├── coins-filled-icon.png │ │ ├── icons8-coins-filled-100.png │ │ └── icons8-coins-filled-50.png │ │ ├── coins-icon.imageset │ │ ├── Contents.json │ │ ├── coins-icon-1.png │ │ ├── coins-icon-2.png │ │ └── coins-icon.png │ │ ├── customers-icon.imageset │ │ ├── Contents.json │ │ ├── customers-icon.png │ │ ├── icons8-customer-filled-100.png │ │ └── icons8-customer-filled-50.png │ │ ├── facebook-icon.imageset │ │ ├── Contents.json │ │ ├── facebook-icon-1.png │ │ ├── facebook-icon-2.png │ │ └── facebook-icon.png │ │ ├── forward-arrow-black.imageset │ │ ├── Contents.json │ │ ├── forward-arrow-black-1.png │ │ ├── forward-arrow-black-2.png │ │ └── forward-arrow-black.png │ │ ├── home-menu-icon.imageset │ │ ├── Contents.json │ │ ├── home-menu-icon-1.png │ │ ├── home-menu-icon-2.png │ │ └── home-menu-icon.png │ │ ├── icn-fb.imageset │ │ ├── Contents.json │ │ ├── Facebook.png │ │ ├── Facebook@2x.png │ │ └── Facebook@3x.png │ │ ├── icn-instagram.imageset │ │ ├── Contents.json │ │ ├── Instagram.png │ │ ├── Instagram@2x.png │ │ └── Instagram@3x.png │ │ ├── icn-twtr.imageset │ │ ├── Contents.json │ │ ├── Twitter.png │ │ ├── Twitter@2x.png │ │ └── Twitter@3x.png │ │ ├── icn-youtube.imageset │ │ ├── Contents.json │ │ ├── Youtube.png │ │ ├── Youtube@2x.png │ │ └── Youtube@3x.png │ │ ├── ios-app-ecommerce-i-shop-onboarding-cover.imageset │ │ ├── Contents.json │ │ ├── ios-app-ecommerce-i-shop-onboarding-cover-1.jpeg │ │ ├── ios-app-ecommerce-i-shop-onboarding-cover-2.jpeg │ │ └── ios-app-ecommerce-i-shop-onboarding-cover.jpeg │ │ ├── logout-menu-item.imageset │ │ ├── Contents.json │ │ ├── logout-menu-item-1.png │ │ ├── logout-menu-item-2.png │ │ └── logout-menu-item.png │ │ ├── night-stars-wallpaper.imageset │ │ ├── Contents.json │ │ ├── night-stars-wallpaper-1.png │ │ ├── night-stars-wallpaper-2.png │ │ └── night-stars-wallpaper.png │ │ ├── orders-icon.imageset │ │ ├── Contents.json │ │ ├── icons8-purchase-order-100.png │ │ ├── icons8-purchase-order-50.png │ │ └── orders-icon.png │ │ ├── products-icon.imageset │ │ ├── Contents.json │ │ ├── icons8-box-filled-100.png │ │ ├── icons8-box-filled-50.png │ │ └── products-icon.png │ │ ├── settings-menu-item.imageset │ │ ├── Contents.json │ │ ├── settings-menu-item-1.png │ │ ├── settings-menu-item-2.png │ │ └── settings-menu-item.png │ │ ├── share-icon.imageset │ │ ├── Contents.json │ │ ├── share-icon-50.png │ │ ├── share-icon-75.png │ │ └── share-icon.png │ │ ├── shopping-cart-icon.imageset │ │ ├── Contents.json │ │ ├── shopping-cart-icon-1.png │ │ ├── shopping-cart-icon-2.png │ │ └── shopping-cart-icon.png │ │ ├── shopping-ios-app-onboarding-cover.imageset │ │ ├── Contents.json │ │ ├── shopping-ios-app-onboarding-cover-1.jpg │ │ ├── shopping-ios-app-onboarding-cover-2.jpg │ │ └── shopping-ios-app-onboarding-cover.jpg │ │ ├── task-filled-icon.imageset │ │ ├── Contents.json │ │ ├── icons8-task-filled-100.png │ │ ├── icons8-task-filled-50.png │ │ └── task-filled-icon.png │ │ ├── three-equal-lines-icon.imageset │ │ ├── Contents.json │ │ ├── icons8-menu-filled-100.png │ │ ├── icons8-menu-filled-50.png │ │ └── three-equal-lines-icon.png │ │ └── twitter-icon.imageset │ │ ├── Contents.json │ │ ├── twitter-icon-1.png │ │ ├── twitter-icon-2.png │ │ └── twitter-icon.png ├── Chat │ ├── Adapters │ │ ├── ATCChatThreadAdapter.swift │ │ └── ATCChatUserStoryAdapter.swift │ ├── Models │ │ ├── ATCChatChannel.swift │ │ └── ATChatMessage.swift │ ├── Store │ │ ├── ATCChatMockStore.swift │ │ └── ATCRemoteData.swift │ ├── Themes │ │ └── Messenger │ │ │ ├── ATCThreadCollectionViewCell.swift │ │ │ ├── ATCThreadCollectionViewCell.xib │ │ │ ├── ATCUserStoryCollectionViewCell.swift │ │ │ └── ATCUserStoryCollectionViewCell.xib │ └── ViewControllers │ │ ├── ATCChatHomeViewController.swift │ │ ├── ATCChatThreadViewController.swift │ │ └── ATCChatThreadsViewController.swift ├── Helpers │ ├── ATCGenericFirebaseDataSource.swift │ ├── ATCGenericLocalDataSource.swift │ ├── ATCGenericLocalHeteroDataSource.swift │ ├── ATCUIGenericConfigurationProtocol.swift │ ├── TimeFormatHelper.swift │ ├── UIImage+ATCAdditions.swift │ └── UITabBarItem+ATCAdditions.swift ├── Models │ ├── ATCUser.swift │ └── ATCViewControllerContainerViewModel.swift ├── ThirdParty │ └── SnapKit │ │ ├── Constraint.swift │ │ ├── ConstraintAttributes.swift │ │ ├── ConstraintConfig.swift │ │ ├── ConstraintConstantTarget.swift │ │ ├── ConstraintDSL.swift │ │ ├── ConstraintDescription.swift │ │ ├── ConstraintInsetTarget.swift │ │ ├── ConstraintInsets.swift │ │ ├── ConstraintItem.swift │ │ ├── ConstraintLayoutGuide+Extensions.swift │ │ ├── ConstraintLayoutGuide.swift │ │ ├── ConstraintLayoutGuideDSL.swift │ │ ├── ConstraintLayoutSupport.swift │ │ ├── ConstraintLayoutSupportDSL.swift │ │ ├── ConstraintMaker.swift │ │ ├── ConstraintMakerEditable.swift │ │ ├── ConstraintMakerExtendable.swift │ │ ├── ConstraintMakerFinalizable.swift │ │ ├── ConstraintMakerPriortizable.swift │ │ ├── ConstraintMakerRelatable.swift │ │ ├── ConstraintMultiplierTarget.swift │ │ ├── ConstraintOffsetTarget.swift │ │ ├── ConstraintPriority.swift │ │ ├── ConstraintPriorityTarget.swift │ │ ├── ConstraintRelatableTarget.swift │ │ ├── ConstraintRelation.swift │ │ ├── ConstraintView+Extensions.swift │ │ ├── ConstraintView.swift │ │ ├── ConstraintViewDSL.swift │ │ ├── Debugging.swift │ │ ├── LayoutConstraint.swift │ │ ├── LayoutConstraintItem.swift │ │ ├── SnapKit.h │ │ ├── Typealiases.swift │ │ └── UILayoutSupport+Extensions.swift ├── UIExtensions │ ├── Date.swift │ ├── String.swift │ ├── UIColor.swift │ ├── UIImage.swift │ ├── UIScrollView.swift │ ├── UITextField.swift │ └── UIView.swift ├── ViewControllers │ ├── ATCGenericCollectionViewController.swift │ ├── Layouts │ │ ├── ATCCollectionViewFlowLayout.swift │ │ └── ATCLiquidCollectionViewLayout.swift │ ├── Navigation │ │ ├── ATCDrawerController.swift │ │ ├── ATCHostViewController.swift │ │ ├── ATCMenuCollectionViewController.swift │ │ ├── ATCMenuHeaderTableViewCell.swift │ │ ├── ATCMenuHeaderTableViewCell.xib │ │ ├── ATCMenuItemCollectionViewCellProtocol.swift │ │ ├── ATCMenuItemRowAdapter.swift │ │ ├── ATCMenuTableViewController.swift │ │ ├── ATCMenuTableViewController.xib │ │ └── ATCNavigationController.swift │ └── UIViewController+ATCAdditions.swift └── Views │ └── Cells │ ├── ATCCarouselCollectionViewCell.swift │ ├── ATCCarouselCollectionViewCell.xib │ ├── ATCStoryCollectionViewCell.swift │ ├── ATCStoryCollectionViewCell.xib │ ├── ATCViewControllerContainerCollectionViewCell.swift │ ├── ATCViewControllerContainerCollectionViewCell.xib │ ├── MenuCells │ ├── ATCCircledIconMenuCollectionViewCell.swift │ └── ATCCircledIconMenuCollectionViewCell.xib │ └── Users │ ├── ATCMessengerUserAdapter.swift │ ├── ATCMessengerUserCollectionViewCell.swift │ └── ATCMessengerUserCollectionViewCell.xib ├── Info.plist ├── LICENSE ├── Podfile └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/.gitignore -------------------------------------------------------------------------------- /AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/AppDelegate.swift -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ChatApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ChatApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChatApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ChatApp.xcodeproj/project.xcworkspace/xcuserdata/Florian.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp.xcodeproj/project.xcworkspace/xcuserdata/Florian.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ChatApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ChatApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ChatApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/AppDelegate.swift -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /ChatApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatApp/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ChatApp/ChatHostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/ChatHostViewController.swift -------------------------------------------------------------------------------- /ChatApp/ChatUIConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/ChatUIConfiguration.swift -------------------------------------------------------------------------------- /ChatApp/Core/Adapters/ATCCarouselAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Adapters/ATCCarouselAdapter.swift -------------------------------------------------------------------------------- /ChatApp/Core/Adapters/ATCStoryAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Adapters/ATCStoryAdapter.swift -------------------------------------------------------------------------------- /ChatApp/Core/Adapters/ATCViewControllerContainerRowAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Adapters/ATCViewControllerContainerRowAdapter.swift -------------------------------------------------------------------------------- /ChatApp/Core/Assets/CoreImages.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/CoreImages.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/CoreImages.xcassets/arrow-right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/CoreImages.xcassets/arrow-right.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/CoreImages.xcassets/arrow-right.imageset/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/CoreImages.xcassets/arrow-right.imageset/arrow-right.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/CoreImages.xcassets/arrow-right.imageset/icons8-forward-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/CoreImages.xcassets/arrow-right.imageset/icons8-forward-filled-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/CoreImages.xcassets/arrow-right.imageset/icons8-forward-filled-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/CoreImages.xcassets/arrow-right.imageset/icons8-forward-filled-500.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/activity-feed-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/activity-feed-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/icons8-activity-feed-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/icons8-activity-feed-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/icons8-activity-feed-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/icons8-activity-feed-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/analytics-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/analytics-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/analytics-icon.imageset/analytics-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/analytics-icon.imageset/analytics-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/analytics-icon.imageset/icons8-combo-chart-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/analytics-icon.imageset/icons8-combo-chart-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/analytics-icon.imageset/icons8-combo-chart-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/analytics-icon.imageset/icons8-combo-chart-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/arrow-back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/arrow-back-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/icons8-back-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/icons8-back-filled-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/icons8-back-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/icons8-back-filled-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bars-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bars-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bars-icon.imageset/bars-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bars-icon.imageset/bars-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bars-icon.imageset/icons8-bar-chart-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bars-icon.imageset/icons8-bar-chart-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bars-icon.imageset/icons8-bar-chart-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bars-icon.imageset/icons8-bar-chart-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bell-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bell-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bell-icon.imageset/bell-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bell-icon.imageset/bell-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bell-icon.imageset/icons8-notification-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bell-icon.imageset/icons8-notification-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bell-icon.imageset/icons8-notification-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bell-icon.imageset/icons8-notification-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/binoculars-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/binoculars-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bubbles-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bubbles-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/calendar-grid-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/calendar-grid-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/icons8-calendar-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/icons8-calendar-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/icons8-calendar-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/icons8-calendar-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/calendar-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/calendar-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/calendar-icon.imageset/calendar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/calendar-icon.imageset/calendar-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/calendar-icon.imageset/icons8-calendar-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/calendar-icon.imageset/icons8-calendar-96.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/calendar-icon.imageset/icons8-calendar-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/calendar-icon.imageset/icons8-calendar-97.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/camera-filled-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/camera-filled-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/icons8-unsplash-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/icons8-unsplash-filled-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/icons8-unsplash-filled-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/icons8-unsplash-filled-75.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/camera-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/camera-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/camera-icon.imageset/camera-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/camera-icon.imageset/camera-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/camera-icon.imageset/icons8-screenshot-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/camera-icon.imageset/icons8-screenshot-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/camera-icon.imageset/icons8-screenshot-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/camera-icon.imageset/icons8-screenshot-75.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/caret-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/caret-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/caret-icon.imageset/caret-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/caret-icon.imageset/caret-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/caret-icon.imageset/icons8-expand-arrow-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/caret-icon.imageset/icons8-expand-arrow-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/caret-icon.imageset/icons8-expand-arrow-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/caret-icon.imageset/icons8-expand-arrow-500.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/check-file-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/check-file-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/coins-filled-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/coins-filled-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/icons8-coins-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/icons8-coins-filled-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/icons8-coins-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/icons8-coins-filled-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/coins-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/coins-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/customers-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/customers-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/customers-icon.imageset/customers-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/customers-icon.imageset/customers-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/customers-icon.imageset/icons8-customer-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/customers-icon.imageset/icons8-customer-filled-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/customers-icon.imageset/icons8-customer-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/customers-icon.imageset/icons8-customer-filled-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/facebook-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/facebook-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/home-menu-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/home-menu-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-fb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-fb.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook@2x.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook@3x.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-instagram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-instagram.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram@2x.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram@3x.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-twtr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-twtr.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter@2x.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter@3x.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-youtube.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube@2x.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube@3x.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover-1.jpeg -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover-2.jpeg -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover.jpeg -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/logout-menu-item.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/logout-menu-item.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/orders-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/orders-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/orders-icon.imageset/icons8-purchase-order-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/orders-icon.imageset/icons8-purchase-order-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/orders-icon.imageset/icons8-purchase-order-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/orders-icon.imageset/icons8-purchase-order-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/orders-icon.imageset/orders-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/orders-icon.imageset/orders-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/products-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/products-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/products-icon.imageset/icons8-box-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/products-icon.imageset/icons8-box-filled-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/products-icon.imageset/icons8-box-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/products-icon.imageset/icons8-box-filled-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/products-icon.imageset/products-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/products-icon.imageset/products-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/settings-menu-item.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/settings-menu-item.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/share-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/share-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon-75.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover-1.jpg -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover-2.jpg -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover.jpg -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/task-filled-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/task-filled-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/task-filled-icon.imageset/icons8-task-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/task-filled-icon.imageset/icons8-task-filled-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/task-filled-icon.imageset/icons8-task-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/task-filled-icon.imageset/icons8-task-filled-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/task-filled-icon.imageset/task-filled-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/task-filled-icon.imageset/task-filled-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/icons8-menu-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/icons8-menu-filled-100.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/icons8-menu-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/icons8-menu-filled-50.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/three-equal-lines-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/three-equal-lines-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/twitter-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/twitter-icon.imageset/Contents.json -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon-1.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon-2.png -------------------------------------------------------------------------------- /ChatApp/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon.png -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Adapters/ATCChatThreadAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Adapters/ATCChatThreadAdapter.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Adapters/ATCChatUserStoryAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Adapters/ATCChatUserStoryAdapter.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Models/ATCChatChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Models/ATCChatChannel.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Models/ATChatMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Models/ATChatMessage.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Store/ATCChatMockStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Store/ATCChatMockStore.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Store/ATCRemoteData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Store/ATCRemoteData.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Themes/Messenger/ATCThreadCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Themes/Messenger/ATCThreadCollectionViewCell.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Themes/Messenger/ATCThreadCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Themes/Messenger/ATCThreadCollectionViewCell.xib -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Themes/Messenger/ATCUserStoryCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Themes/Messenger/ATCUserStoryCollectionViewCell.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/Themes/Messenger/ATCUserStoryCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/Themes/Messenger/ATCUserStoryCollectionViewCell.xib -------------------------------------------------------------------------------- /ChatApp/Core/Chat/ViewControllers/ATCChatHomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/ViewControllers/ATCChatHomeViewController.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/ViewControllers/ATCChatThreadViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/ViewControllers/ATCChatThreadViewController.swift -------------------------------------------------------------------------------- /ChatApp/Core/Chat/ViewControllers/ATCChatThreadsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Chat/ViewControllers/ATCChatThreadsViewController.swift -------------------------------------------------------------------------------- /ChatApp/Core/Helpers/ATCGenericFirebaseDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Helpers/ATCGenericFirebaseDataSource.swift -------------------------------------------------------------------------------- /ChatApp/Core/Helpers/ATCGenericLocalDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Helpers/ATCGenericLocalDataSource.swift -------------------------------------------------------------------------------- /ChatApp/Core/Helpers/ATCGenericLocalHeteroDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Helpers/ATCGenericLocalHeteroDataSource.swift -------------------------------------------------------------------------------- /ChatApp/Core/Helpers/ATCUIGenericConfigurationProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Helpers/ATCUIGenericConfigurationProtocol.swift -------------------------------------------------------------------------------- /ChatApp/Core/Helpers/TimeFormatHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Helpers/TimeFormatHelper.swift -------------------------------------------------------------------------------- /ChatApp/Core/Helpers/UIImage+ATCAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Helpers/UIImage+ATCAdditions.swift -------------------------------------------------------------------------------- /ChatApp/Core/Helpers/UITabBarItem+ATCAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Helpers/UITabBarItem+ATCAdditions.swift -------------------------------------------------------------------------------- /ChatApp/Core/Models/ATCUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Models/ATCUser.swift -------------------------------------------------------------------------------- /ChatApp/Core/Models/ATCViewControllerContainerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Models/ATCViewControllerContainerViewModel.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/Constraint.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintAttributes.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintConfig.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintConstantTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintConstantTarget.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintDSL.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintDescription.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintInsets.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintItem.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutGuide+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutGuide+Extensions.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutGuideDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutGuideDSL.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutSupportDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintLayoutSupportDSL.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintMaker.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerExtendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerExtendable.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerFinalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerFinalizable.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerPriortizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerPriortizable.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerRelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintMakerRelatable.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintMultiplierTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintMultiplierTarget.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintPriority.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintPriorityTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintPriorityTarget.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintRelatableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintRelatableTarget.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintRelation.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintView+Extensions.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintView.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/Debugging.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/LayoutConstraint.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/SnapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/SnapKit.h -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/Typealiases.swift -------------------------------------------------------------------------------- /ChatApp/Core/ThirdParty/SnapKit/UILayoutSupport+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ThirdParty/SnapKit/UILayoutSupport+Extensions.swift -------------------------------------------------------------------------------- /ChatApp/Core/UIExtensions/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/UIExtensions/Date.swift -------------------------------------------------------------------------------- /ChatApp/Core/UIExtensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/UIExtensions/String.swift -------------------------------------------------------------------------------- /ChatApp/Core/UIExtensions/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/UIExtensions/UIColor.swift -------------------------------------------------------------------------------- /ChatApp/Core/UIExtensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/UIExtensions/UIImage.swift -------------------------------------------------------------------------------- /ChatApp/Core/UIExtensions/UIScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/UIExtensions/UIScrollView.swift -------------------------------------------------------------------------------- /ChatApp/Core/UIExtensions/UITextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/UIExtensions/UITextField.swift -------------------------------------------------------------------------------- /ChatApp/Core/UIExtensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/UIExtensions/UIView.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/ATCGenericCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/ATCGenericCollectionViewController.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Layouts/ATCCollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Layouts/ATCCollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Layouts/ATCLiquidCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Layouts/ATCLiquidCollectionViewLayout.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCDrawerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCDrawerController.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCHostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCHostViewController.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCMenuCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCMenuCollectionViewController.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCMenuHeaderTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCMenuHeaderTableViewCell.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCMenuHeaderTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCMenuHeaderTableViewCell.xib -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCMenuItemCollectionViewCellProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCMenuItemCollectionViewCellProtocol.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCMenuItemRowAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCMenuItemRowAdapter.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCMenuTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCMenuTableViewController.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCMenuTableViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCMenuTableViewController.xib -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/Navigation/ATCNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/Navigation/ATCNavigationController.swift -------------------------------------------------------------------------------- /ChatApp/Core/ViewControllers/UIViewController+ATCAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/ViewControllers/UIViewController+ATCAdditions.swift -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/ATCCarouselCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/ATCCarouselCollectionViewCell.swift -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/ATCCarouselCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/ATCCarouselCollectionViewCell.xib -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/ATCStoryCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/ATCStoryCollectionViewCell.swift -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/ATCStoryCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/ATCStoryCollectionViewCell.xib -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/ATCViewControllerContainerCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/ATCViewControllerContainerCollectionViewCell.swift -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/ATCViewControllerContainerCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/ATCViewControllerContainerCollectionViewCell.xib -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/MenuCells/ATCCircledIconMenuCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/MenuCells/ATCCircledIconMenuCollectionViewCell.swift -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/MenuCells/ATCCircledIconMenuCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/MenuCells/ATCCircledIconMenuCollectionViewCell.xib -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/Users/ATCMessengerUserAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/Users/ATCMessengerUserAdapter.swift -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/Users/ATCMessengerUserCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/Users/ATCMessengerUserCollectionViewCell.swift -------------------------------------------------------------------------------- /ChatApp/Core/Views/Cells/Users/ATCMessengerUserCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Core/Views/Cells/Users/ATCMessengerUserCollectionViewCell.xib -------------------------------------------------------------------------------- /ChatApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatApp/Info.plist -------------------------------------------------------------------------------- /ChatHostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatHostViewController.swift -------------------------------------------------------------------------------- /ChatUIConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/ChatUIConfiguration.swift -------------------------------------------------------------------------------- /Core/Adapters/ATCCarouselAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Adapters/ATCCarouselAdapter.swift -------------------------------------------------------------------------------- /Core/Adapters/ATCStoryAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Adapters/ATCStoryAdapter.swift -------------------------------------------------------------------------------- /Core/Adapters/ATCViewControllerContainerRowAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Adapters/ATCViewControllerContainerRowAdapter.swift -------------------------------------------------------------------------------- /Core/Assets/CoreImages.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/CoreImages.xcassets/Contents.json -------------------------------------------------------------------------------- /Core/Assets/CoreImages.xcassets/arrow-right.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/CoreImages.xcassets/arrow-right.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/CoreImages.xcassets/arrow-right.imageset/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/CoreImages.xcassets/arrow-right.imageset/arrow-right.png -------------------------------------------------------------------------------- /Core/Assets/CoreImages.xcassets/arrow-right.imageset/icons8-forward-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/CoreImages.xcassets/arrow-right.imageset/icons8-forward-filled-100.png -------------------------------------------------------------------------------- /Core/Assets/CoreImages.xcassets/arrow-right.imageset/icons8-forward-filled-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/CoreImages.xcassets/arrow-right.imageset/icons8-forward-filled-500.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/activity-feed-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/activity-feed-icon.imageset/activity-feed-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/activity-feed-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/activity-feed-icon.imageset/icons8-activity-feed-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/icons8-activity-feed-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/activity-feed-icon.imageset/icons8-activity-feed-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/activity-feed-icon.imageset/icons8-activity-feed-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/analytics-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/analytics-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/analytics-icon.imageset/analytics-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/analytics-icon.imageset/analytics-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/analytics-icon.imageset/icons8-combo-chart-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/analytics-icon.imageset/icons8-combo-chart-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/analytics-icon.imageset/icons8-combo-chart-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/analytics-icon.imageset/icons8-combo-chart-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/arrow-back-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/arrow-back-icon.imageset/arrow-back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/arrow-back-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/arrow-back-icon.imageset/icons8-back-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/icons8-back-filled-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/arrow-back-icon.imageset/icons8-back-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/arrow-back-icon.imageset/icons8-back-filled-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bars-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bars-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bars-icon.imageset/bars-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bars-icon.imageset/bars-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bars-icon.imageset/icons8-bar-chart-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bars-icon.imageset/icons8-bar-chart-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bars-icon.imageset/icons8-bar-chart-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bars-icon.imageset/icons8-bar-chart-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bell-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bell-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bell-icon.imageset/bell-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bell-icon.imageset/bell-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bell-icon.imageset/icons8-notification-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bell-icon.imageset/icons8-notification-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bell-icon.imageset/icons8-notification-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bell-icon.imageset/icons8-notification-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/binoculars-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/binoculars-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/binoculars-icon.imageset/binoculars-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bubbles-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bubbles-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/bubbles-icon.imageset/bubbles-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/calendar-grid-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/calendar-grid-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/icons8-calendar-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/icons8-calendar-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/icons8-calendar-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/calendar-grid-icon.imageset/icons8-calendar-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/calendar-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/calendar-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/calendar-icon.imageset/calendar-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/calendar-icon.imageset/calendar-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/calendar-icon.imageset/icons8-calendar-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/calendar-icon.imageset/icons8-calendar-96.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/calendar-icon.imageset/icons8-calendar-97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/calendar-icon.imageset/icons8-calendar-97.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/camera-filled-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/camera-filled-icon.imageset/camera-filled-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/camera-filled-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/camera-filled-icon.imageset/icons8-unsplash-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/icons8-unsplash-filled-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/camera-filled-icon.imageset/icons8-unsplash-filled-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/camera-filled-icon.imageset/icons8-unsplash-filled-75.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/camera-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/camera-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/camera-icon.imageset/camera-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/camera-icon.imageset/camera-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/camera-icon.imageset/icons8-screenshot-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/camera-icon.imageset/icons8-screenshot-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/camera-icon.imageset/icons8-screenshot-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/camera-icon.imageset/icons8-screenshot-75.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/caret-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/caret-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/caret-icon.imageset/caret-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/caret-icon.imageset/caret-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/caret-icon.imageset/icons8-expand-arrow-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/caret-icon.imageset/icons8-expand-arrow-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/caret-icon.imageset/icons8-expand-arrow-500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/caret-icon.imageset/icons8-expand-arrow-500.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/check-file-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/check-file-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/check-file-icon.imageset/check-file-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/coins-filled-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/coins-filled-icon.imageset/coins-filled-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/coins-filled-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/coins-filled-icon.imageset/icons8-coins-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/icons8-coins-filled-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/coins-filled-icon.imageset/icons8-coins-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/coins-filled-icon.imageset/icons8-coins-filled-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/coins-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/coins-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/coins-icon.imageset/coins-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/customers-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/customers-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/customers-icon.imageset/customers-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/customers-icon.imageset/customers-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/customers-icon.imageset/icons8-customer-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/customers-icon.imageset/icons8-customer-filled-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/customers-icon.imageset/icons8-customer-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/customers-icon.imageset/icons8-customer-filled-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/facebook-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/facebook-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/facebook-icon.imageset/facebook-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/forward-arrow-black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/forward-arrow-black.imageset/forward-arrow-black.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/home-menu-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/home-menu-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/home-menu-icon.imageset/home-menu-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-fb.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-fb.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook@2x.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-fb.imageset/Facebook@3x.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-instagram.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-instagram.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram@2x.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-instagram.imageset/Instagram@3x.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-twtr.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-twtr.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter@2x.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-twtr.imageset/Twitter@3x.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-youtube.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube@2x.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/icn-youtube.imageset/Youtube@3x.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover-1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover-1.jpeg -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover-2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover-2.jpeg -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/ios-app-ecommerce-i-shop-onboarding-cover.imageset/ios-app-ecommerce-i-shop-onboarding-cover.jpeg -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/logout-menu-item.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/logout-menu-item.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/logout-menu-item.imageset/logout-menu-item.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/night-stars-wallpaper.imageset/night-stars-wallpaper.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/orders-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/orders-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/orders-icon.imageset/icons8-purchase-order-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/orders-icon.imageset/icons8-purchase-order-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/orders-icon.imageset/icons8-purchase-order-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/orders-icon.imageset/icons8-purchase-order-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/orders-icon.imageset/orders-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/orders-icon.imageset/orders-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/products-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/products-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/products-icon.imageset/icons8-box-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/products-icon.imageset/icons8-box-filled-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/products-icon.imageset/icons8-box-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/products-icon.imageset/icons8-box-filled-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/products-icon.imageset/products-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/products-icon.imageset/products-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/settings-menu-item.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/settings-menu-item.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/settings-menu-item.imageset/settings-menu-item.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/share-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/share-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/share-icon.imageset/share-icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/share-icon.imageset/share-icon-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon-75.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/share-icon.imageset/share-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/share-icon.imageset/share-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/shopping-cart-icon.imageset/shopping-cart-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover-1.jpg -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover-2.jpg -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/shopping-ios-app-onboarding-cover.imageset/shopping-ios-app-onboarding-cover.jpg -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/task-filled-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/task-filled-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/task-filled-icon.imageset/icons8-task-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/task-filled-icon.imageset/icons8-task-filled-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/task-filled-icon.imageset/icons8-task-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/task-filled-icon.imageset/icons8-task-filled-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/task-filled-icon.imageset/task-filled-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/task-filled-icon.imageset/task-filled-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/icons8-menu-filled-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/icons8-menu-filled-100.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/icons8-menu-filled-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/icons8-menu-filled-50.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/three-equal-lines-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/three-equal-lines-icon.imageset/three-equal-lines-icon.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/twitter-icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/twitter-icon.imageset/Contents.json -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon-1.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon-2.png -------------------------------------------------------------------------------- /Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Assets/Misc.xcassets/twitter-icon.imageset/twitter-icon.png -------------------------------------------------------------------------------- /Core/Chat/Adapters/ATCChatThreadAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Adapters/ATCChatThreadAdapter.swift -------------------------------------------------------------------------------- /Core/Chat/Adapters/ATCChatUserStoryAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Adapters/ATCChatUserStoryAdapter.swift -------------------------------------------------------------------------------- /Core/Chat/Models/ATCChatChannel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Models/ATCChatChannel.swift -------------------------------------------------------------------------------- /Core/Chat/Models/ATChatMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Models/ATChatMessage.swift -------------------------------------------------------------------------------- /Core/Chat/Store/ATCChatMockStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Store/ATCChatMockStore.swift -------------------------------------------------------------------------------- /Core/Chat/Store/ATCRemoteData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Store/ATCRemoteData.swift -------------------------------------------------------------------------------- /Core/Chat/Themes/Messenger/ATCThreadCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Themes/Messenger/ATCThreadCollectionViewCell.swift -------------------------------------------------------------------------------- /Core/Chat/Themes/Messenger/ATCThreadCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Themes/Messenger/ATCThreadCollectionViewCell.xib -------------------------------------------------------------------------------- /Core/Chat/Themes/Messenger/ATCUserStoryCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Themes/Messenger/ATCUserStoryCollectionViewCell.swift -------------------------------------------------------------------------------- /Core/Chat/Themes/Messenger/ATCUserStoryCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/Themes/Messenger/ATCUserStoryCollectionViewCell.xib -------------------------------------------------------------------------------- /Core/Chat/ViewControllers/ATCChatHomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/ViewControllers/ATCChatHomeViewController.swift -------------------------------------------------------------------------------- /Core/Chat/ViewControllers/ATCChatThreadViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/ViewControllers/ATCChatThreadViewController.swift -------------------------------------------------------------------------------- /Core/Chat/ViewControllers/ATCChatThreadsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Chat/ViewControllers/ATCChatThreadsViewController.swift -------------------------------------------------------------------------------- /Core/Helpers/ATCGenericFirebaseDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Helpers/ATCGenericFirebaseDataSource.swift -------------------------------------------------------------------------------- /Core/Helpers/ATCGenericLocalDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Helpers/ATCGenericLocalDataSource.swift -------------------------------------------------------------------------------- /Core/Helpers/ATCGenericLocalHeteroDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Helpers/ATCGenericLocalHeteroDataSource.swift -------------------------------------------------------------------------------- /Core/Helpers/ATCUIGenericConfigurationProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Helpers/ATCUIGenericConfigurationProtocol.swift -------------------------------------------------------------------------------- /Core/Helpers/TimeFormatHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Helpers/TimeFormatHelper.swift -------------------------------------------------------------------------------- /Core/Helpers/UIImage+ATCAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Helpers/UIImage+ATCAdditions.swift -------------------------------------------------------------------------------- /Core/Helpers/UITabBarItem+ATCAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Helpers/UITabBarItem+ATCAdditions.swift -------------------------------------------------------------------------------- /Core/Models/ATCUser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Models/ATCUser.swift -------------------------------------------------------------------------------- /Core/Models/ATCViewControllerContainerViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Models/ATCViewControllerContainerViewModel.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/Constraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/Constraint.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintAttributes.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintConfig.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintConfig.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintConstantTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintConstantTarget.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintDSL.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintDescription.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintDescription.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintInsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintInsetTarget.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintInsets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintInsets.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintItem.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintLayoutGuide+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintLayoutGuide+Extensions.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintLayoutGuide.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintLayoutGuide.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintLayoutGuideDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintLayoutGuideDSL.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintLayoutSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintLayoutSupport.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintLayoutSupportDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintLayoutSupportDSL.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintMaker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintMaker.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintMakerEditable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintMakerEditable.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintMakerExtendable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintMakerExtendable.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintMakerFinalizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintMakerFinalizable.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintMakerPriortizable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintMakerPriortizable.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintMakerRelatable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintMakerRelatable.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintMultiplierTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintMultiplierTarget.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintOffsetTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintOffsetTarget.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintPriority.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintPriorityTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintPriorityTarget.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintRelatableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintRelatableTarget.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintRelation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintRelation.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintView+Extensions.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintView.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/ConstraintViewDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/ConstraintViewDSL.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/Debugging.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/Debugging.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/LayoutConstraint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/LayoutConstraint.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/LayoutConstraintItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/LayoutConstraintItem.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/SnapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/SnapKit.h -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/Typealiases.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/Typealiases.swift -------------------------------------------------------------------------------- /Core/ThirdParty/SnapKit/UILayoutSupport+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ThirdParty/SnapKit/UILayoutSupport+Extensions.swift -------------------------------------------------------------------------------- /Core/UIExtensions/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/UIExtensions/Date.swift -------------------------------------------------------------------------------- /Core/UIExtensions/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/UIExtensions/String.swift -------------------------------------------------------------------------------- /Core/UIExtensions/UIColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/UIExtensions/UIColor.swift -------------------------------------------------------------------------------- /Core/UIExtensions/UIImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/UIExtensions/UIImage.swift -------------------------------------------------------------------------------- /Core/UIExtensions/UIScrollView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/UIExtensions/UIScrollView.swift -------------------------------------------------------------------------------- /Core/UIExtensions/UITextField.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/UIExtensions/UITextField.swift -------------------------------------------------------------------------------- /Core/UIExtensions/UIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/UIExtensions/UIView.swift -------------------------------------------------------------------------------- /Core/ViewControllers/ATCGenericCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/ATCGenericCollectionViewController.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Layouts/ATCCollectionViewFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Layouts/ATCCollectionViewFlowLayout.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Layouts/ATCLiquidCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Layouts/ATCLiquidCollectionViewLayout.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCDrawerController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCDrawerController.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCHostViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCHostViewController.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCMenuCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCMenuCollectionViewController.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCMenuHeaderTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCMenuHeaderTableViewCell.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCMenuHeaderTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCMenuHeaderTableViewCell.xib -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCMenuItemCollectionViewCellProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCMenuItemCollectionViewCellProtocol.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCMenuItemRowAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCMenuItemRowAdapter.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCMenuTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCMenuTableViewController.swift -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCMenuTableViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCMenuTableViewController.xib -------------------------------------------------------------------------------- /Core/ViewControllers/Navigation/ATCNavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/Navigation/ATCNavigationController.swift -------------------------------------------------------------------------------- /Core/ViewControllers/UIViewController+ATCAdditions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/ViewControllers/UIViewController+ATCAdditions.swift -------------------------------------------------------------------------------- /Core/Views/Cells/ATCCarouselCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/ATCCarouselCollectionViewCell.swift -------------------------------------------------------------------------------- /Core/Views/Cells/ATCCarouselCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/ATCCarouselCollectionViewCell.xib -------------------------------------------------------------------------------- /Core/Views/Cells/ATCStoryCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/ATCStoryCollectionViewCell.swift -------------------------------------------------------------------------------- /Core/Views/Cells/ATCStoryCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/ATCStoryCollectionViewCell.xib -------------------------------------------------------------------------------- /Core/Views/Cells/ATCViewControllerContainerCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/ATCViewControllerContainerCollectionViewCell.swift -------------------------------------------------------------------------------- /Core/Views/Cells/ATCViewControllerContainerCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/ATCViewControllerContainerCollectionViewCell.xib -------------------------------------------------------------------------------- /Core/Views/Cells/MenuCells/ATCCircledIconMenuCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/MenuCells/ATCCircledIconMenuCollectionViewCell.swift -------------------------------------------------------------------------------- /Core/Views/Cells/MenuCells/ATCCircledIconMenuCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/MenuCells/ATCCircledIconMenuCollectionViewCell.xib -------------------------------------------------------------------------------- /Core/Views/Cells/Users/ATCMessengerUserAdapter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/Users/ATCMessengerUserAdapter.swift -------------------------------------------------------------------------------- /Core/Views/Cells/Users/ATCMessengerUserCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/Users/ATCMessengerUserCollectionViewCell.swift -------------------------------------------------------------------------------- /Core/Views/Cells/Users/ATCMessengerUserCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Core/Views/Cells/Users/ATCMessengerUserCollectionViewCell.xib -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dopebase/messenger-iOS-chat-swift-firestore/HEAD/README.md --------------------------------------------------------------------------------