├── DynamicCell.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── mohannad.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── DynamicCell.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── mohannad.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── DynamicCell ├── Controllers │ ├── CommentsController.swift │ ├── FeedsController.swift │ └── MainController.swift ├── Info.plist ├── Models │ ├── Comment.swift │ └── Photo.swift ├── Others │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── 90.imageset │ │ │ ├── 90.jpeg │ │ │ └── Contents.json │ │ ├── 91.imageset │ │ │ ├── 91.jpeg │ │ │ └── Contents.json │ │ ├── 92.imageset │ │ │ ├── 92.jpeg │ │ │ └── Contents.json │ │ ├── 93.imageset │ │ │ ├── 99.jpeg │ │ │ └── Contents.json │ │ ├── 94.imageset │ │ │ ├── 94.jpeg │ │ │ └── Contents.json │ │ ├── 95.imageset │ │ │ ├── 95.jpeg │ │ │ └── Contents.json │ │ ├── 96.imageset │ │ │ ├── 96.jpeg │ │ │ └── Contents.json │ │ ├── 97.imageset │ │ │ ├── 97.jpeg │ │ │ └── Contents.json │ │ ├── 98.imageset │ │ │ ├── 98.jpeg │ │ │ └── Contents.json │ │ ├── 99.imageset │ │ │ ├── 93.jpeg │ │ │ └── Contents.json │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ └── SceneDelegate.swift ├── Utilities │ ├── ApiService.swift │ ├── CommentFlowLayout.swift │ ├── Constants.swift │ ├── Extentions.swift │ └── PinterestLayout.swift └── Views │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Comments.storyboard │ ├── CustomCells │ ├── CommentCell.swift │ └── FeedCell.swift │ └── Feeds.storyboard ├── DynamicCellTests ├── DynamicCellTests.swift └── Info.plist ├── DynamicCellUITests ├── DynamicCellUITests.swift └── Info.plist ├── Podfile ├── Podfile.lock ├── Pods ├── Fakery │ ├── LICENSE.md │ ├── README.md │ ├── README.md.orig │ └── Sources │ │ └── Fakery │ │ ├── Config.swift │ │ ├── Data │ │ ├── Parser.swift │ │ └── Provider.swift │ │ ├── Extensions │ │ ├── ArrayExtension.swift │ │ └── StringExtensions.swift │ │ ├── Faker.swift │ │ ├── Generators │ │ ├── Address.swift │ │ ├── App.swift │ │ ├── Bank.swift │ │ ├── Business.swift │ │ ├── Car.swift │ │ ├── Cat.swift │ │ ├── Commerce.swift │ │ ├── Company.swift │ │ ├── Date.swift │ │ ├── Gender.swift │ │ ├── Generator.swift │ │ ├── Ham.swift │ │ ├── Hobbit.swift │ │ ├── House.swift │ │ ├── Internet.swift │ │ ├── Lorem.swift │ │ ├── Name.swift │ │ ├── Number.swift │ │ ├── PhoneNumber.swift │ │ ├── ProgrammingLanguage.swift │ │ ├── Team.swift │ │ ├── Vehicle.swift │ │ └── Zelda.swift │ │ └── Resources │ │ └── Locales │ │ ├── de-AT.json │ │ ├── de-CH.json │ │ ├── de.json │ │ ├── en-AU.json │ │ ├── en-CA.json │ │ ├── en-GB.json │ │ ├── en-IND.json │ │ ├── en-TEST.json │ │ ├── en-US.json │ │ ├── en.json │ │ ├── es.json │ │ ├── fa.json │ │ ├── fr.json │ │ ├── it.json │ │ ├── ja.json │ │ ├── ko.json │ │ ├── nb-NO.json │ │ ├── nl.json │ │ ├── pl.json │ │ ├── pt-BR.json │ │ ├── ru.json │ │ ├── sk.json │ │ ├── sv.json │ │ ├── tr-TR.json │ │ ├── uk.json │ │ ├── zh-CN.json │ │ └── zh-TW.json ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Cache │ │ ├── CacheSerializer.swift │ │ ├── DiskStorage.swift │ │ ├── FormatIndicatedCacheSerializer.swift │ │ ├── ImageCache.swift │ │ ├── MemoryStorage.swift │ │ └── Storage.swift │ │ ├── Extensions │ │ ├── ImageView+Kingfisher.swift │ │ ├── NSButton+Kingfisher.swift │ │ ├── NSTextAttachment+Kingfisher.swift │ │ ├── TVMonogramView+Kingfisher.swift │ │ ├── UIButton+Kingfisher.swift │ │ └── WKInterfaceImage+Kingfisher.swift │ │ ├── General │ │ ├── ImageSource │ │ │ ├── AVAssetImageDataProvider.swift │ │ │ ├── ImageDataProvider.swift │ │ │ ├── Resource.swift │ │ │ └── Source.swift │ │ ├── KF.swift │ │ ├── KFOptionsSetter.swift │ │ ├── Kingfisher.swift │ │ ├── KingfisherError.swift │ │ ├── KingfisherManager.swift │ │ └── KingfisherOptionsInfo.swift │ │ ├── Image │ │ ├── Filter.swift │ │ ├── GIFAnimatedImage.swift │ │ ├── Image.swift │ │ ├── ImageDrawing.swift │ │ ├── ImageFormat.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageProgressive.swift │ │ ├── ImageTransition.swift │ │ └── Placeholder.swift │ │ ├── Kingfisher.h │ │ ├── Networking │ │ ├── AuthenticationChallengeResponsable.swift │ │ ├── ImageDataProcessor.swift │ │ ├── ImageDownloader.swift │ │ ├── ImageDownloaderDelegate.swift │ │ ├── ImageModifier.swift │ │ ├── ImagePrefetcher.swift │ │ ├── RedirectHandler.swift │ │ ├── RequestModifier.swift │ │ ├── RetryStrategy.swift │ │ ├── SessionDataTask.swift │ │ └── SessionDelegate.swift │ │ ├── SwiftUI │ │ ├── ImageBinder.swift │ │ ├── KFImage.swift │ │ └── KFImageOptions.swift │ │ ├── Utility │ │ ├── Box.swift │ │ ├── CallbackQueue.swift │ │ ├── Delegate.swift │ │ ├── ExtensionHelpers.swift │ │ ├── Result.swift │ │ ├── Runtime.swift │ │ ├── SizeExtensions.swift │ │ └── String+MD5.swift │ │ └── Views │ │ ├── AnimatedImageView.swift │ │ └── Indicator.swift ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── mohannad.xcuserdatad │ │ └── xcschemes │ │ ├── Fakery-Faker.xcscheme │ │ ├── Fakery.xcscheme │ │ ├── Kingfisher.xcscheme │ │ ├── Pods-DynamicCell-DynamicCellUITests.xcscheme │ │ ├── Pods-DynamicCell.xcscheme │ │ ├── Pods-DynamicCellTests.xcscheme │ │ └── xcschememanagement.plist └── Target Support Files │ ├── Fakery │ ├── Fakery-Info.plist │ ├── Fakery-dummy.m │ ├── Fakery-prefix.pch │ ├── Fakery-umbrella.h │ ├── Fakery.debug.xcconfig │ ├── Fakery.modulemap │ ├── Fakery.release.xcconfig │ └── ResourceBundle-Faker-Fakery-Info.plist │ ├── Kingfisher │ ├── Kingfisher-Info.plist │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.debug.xcconfig │ ├── Kingfisher.modulemap │ └── Kingfisher.release.xcconfig │ ├── Pods-DynamicCell-DynamicCellUITests │ ├── Pods-DynamicCell-DynamicCellUITests-Info.plist │ ├── Pods-DynamicCell-DynamicCellUITests-acknowledgements.markdown │ ├── Pods-DynamicCell-DynamicCellUITests-acknowledgements.plist │ ├── Pods-DynamicCell-DynamicCellUITests-dummy.m │ ├── Pods-DynamicCell-DynamicCellUITests-frameworks-Debug-input-files.xcfilelist │ ├── Pods-DynamicCell-DynamicCellUITests-frameworks-Debug-output-files.xcfilelist │ ├── Pods-DynamicCell-DynamicCellUITests-frameworks-Release-input-files.xcfilelist │ ├── Pods-DynamicCell-DynamicCellUITests-frameworks-Release-output-files.xcfilelist │ ├── Pods-DynamicCell-DynamicCellUITests-frameworks.sh │ ├── Pods-DynamicCell-DynamicCellUITests-umbrella.h │ ├── Pods-DynamicCell-DynamicCellUITests.debug.xcconfig │ ├── Pods-DynamicCell-DynamicCellUITests.modulemap │ └── Pods-DynamicCell-DynamicCellUITests.release.xcconfig │ ├── Pods-DynamicCell │ ├── Pods-DynamicCell-Info.plist │ ├── Pods-DynamicCell-acknowledgements.markdown │ ├── Pods-DynamicCell-acknowledgements.plist │ ├── Pods-DynamicCell-dummy.m │ ├── Pods-DynamicCell-frameworks-Debug-input-files.xcfilelist │ ├── Pods-DynamicCell-frameworks-Debug-output-files.xcfilelist │ ├── Pods-DynamicCell-frameworks-Release-input-files.xcfilelist │ ├── Pods-DynamicCell-frameworks-Release-output-files.xcfilelist │ ├── Pods-DynamicCell-frameworks.sh │ ├── Pods-DynamicCell-umbrella.h │ ├── Pods-DynamicCell.debug.xcconfig │ ├── Pods-DynamicCell.modulemap │ └── Pods-DynamicCell.release.xcconfig │ └── Pods-DynamicCellTests │ ├── Pods-DynamicCellTests-Info.plist │ ├── Pods-DynamicCellTests-acknowledgements.markdown │ ├── Pods-DynamicCellTests-acknowledgements.plist │ ├── Pods-DynamicCellTests-dummy.m │ ├── Pods-DynamicCellTests-umbrella.h │ ├── Pods-DynamicCellTests.debug.xcconfig │ ├── Pods-DynamicCellTests.modulemap │ └── Pods-DynamicCellTests.release.xcconfig └── README.md /DynamicCell.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DynamicCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DynamicCell.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DynamicCell.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DynamicCell.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DynamicCell.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DynamicCell.xcworkspace/xcuserdata/mohannad.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell.xcworkspace/xcuserdata/mohannad.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DynamicCell/Controllers/CommentsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Controllers/CommentsController.swift -------------------------------------------------------------------------------- /DynamicCell/Controllers/FeedsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Controllers/FeedsController.swift -------------------------------------------------------------------------------- /DynamicCell/Controllers/MainController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Controllers/MainController.swift -------------------------------------------------------------------------------- /DynamicCell/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Info.plist -------------------------------------------------------------------------------- /DynamicCell/Models/Comment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Models/Comment.swift -------------------------------------------------------------------------------- /DynamicCell/Models/Photo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Models/Photo.swift -------------------------------------------------------------------------------- /DynamicCell/Others/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/AppDelegate.swift -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/90.imageset/90.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/90.imageset/90.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/90.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/90.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/91.imageset/91.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/91.imageset/91.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/91.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/91.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/92.imageset/92.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/92.imageset/92.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/92.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/92.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/93.imageset/99.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/93.imageset/99.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/93.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/93.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/94.imageset/94.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/94.imageset/94.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/94.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/94.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/95.imageset/95.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/95.imageset/95.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/95.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/95.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/96.imageset/96.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/96.imageset/96.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/96.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/96.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/97.imageset/97.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/97.imageset/97.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/97.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/97.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/98.imageset/98.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/98.imageset/98.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/98.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/98.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/99.imageset/93.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/99.imageset/93.jpeg -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/99.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/99.imageset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DynamicCell/Others/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Others/SceneDelegate.swift -------------------------------------------------------------------------------- /DynamicCell/Utilities/ApiService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Utilities/ApiService.swift -------------------------------------------------------------------------------- /DynamicCell/Utilities/CommentFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Utilities/CommentFlowLayout.swift -------------------------------------------------------------------------------- /DynamicCell/Utilities/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Utilities/Constants.swift -------------------------------------------------------------------------------- /DynamicCell/Utilities/Extentions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Utilities/Extentions.swift -------------------------------------------------------------------------------- /DynamicCell/Utilities/PinterestLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Utilities/PinterestLayout.swift -------------------------------------------------------------------------------- /DynamicCell/Views/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Views/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DynamicCell/Views/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Views/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DynamicCell/Views/Comments.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Views/Comments.storyboard -------------------------------------------------------------------------------- /DynamicCell/Views/CustomCells/CommentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Views/CustomCells/CommentCell.swift -------------------------------------------------------------------------------- /DynamicCell/Views/CustomCells/FeedCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Views/CustomCells/FeedCell.swift -------------------------------------------------------------------------------- /DynamicCell/Views/Feeds.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCell/Views/Feeds.storyboard -------------------------------------------------------------------------------- /DynamicCellTests/DynamicCellTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCellTests/DynamicCellTests.swift -------------------------------------------------------------------------------- /DynamicCellTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCellTests/Info.plist -------------------------------------------------------------------------------- /DynamicCellUITests/DynamicCellUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCellUITests/DynamicCellUITests.swift -------------------------------------------------------------------------------- /DynamicCellUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/DynamicCellUITests/Info.plist -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Fakery/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/LICENSE.md -------------------------------------------------------------------------------- /Pods/Fakery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/README.md -------------------------------------------------------------------------------- /Pods/Fakery/README.md.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/README.md.orig -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Config.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Data/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Data/Parser.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Data/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Data/Provider.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Extensions/ArrayExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Extensions/ArrayExtension.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Extensions/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Extensions/StringExtensions.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Faker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Faker.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Address.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Address.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/App.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Bank.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Bank.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Business.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Business.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Car.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Car.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Cat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Cat.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Commerce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Commerce.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Company.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Company.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Date.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Gender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Gender.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Generator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Generator.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Ham.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Ham.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Hobbit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Hobbit.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/House.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/House.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Internet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Internet.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Lorem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Lorem.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Name.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Name.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Number.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Number.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/PhoneNumber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/PhoneNumber.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/ProgrammingLanguage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/ProgrammingLanguage.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Team.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Team.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Vehicle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Vehicle.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Generators/Zelda.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Generators/Zelda.swift -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/de-AT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/de-AT.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/de-CH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/de-CH.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/de.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/en-AU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/en-AU.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/en-CA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/en-CA.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/en-GB.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/en-IND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/en-IND.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/en-TEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/en-TEST.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/en-US.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/en.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/es.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/fa.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/fr.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/it.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/ja.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/ko.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/nb-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/nb-NO.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/nl.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/pl.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/pt-BR.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/ru.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/sk.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/sv.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/tr-TR.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/uk.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/zh-CN.json -------------------------------------------------------------------------------- /Pods/Fakery/Sources/Fakery/Resources/Locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Fakery/Sources/Fakery/Resources/Locales/zh-TW.json -------------------------------------------------------------------------------- /Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Cache/DiskStorage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Cache/ImageCache.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/MemoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Cache/Storage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/NSTextAttachment+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Extensions/NSTextAttachment+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/TVMonogramView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Extensions/TVMonogramView+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/AVAssetImageDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/ImageSource/AVAssetImageDataProvider.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/ImageSource/Source.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/KF.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KFOptionsSetter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/KFOptionsSetter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/KingfisherError.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/KingfisherManager.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/Filter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/Image.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageDrawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/ImageDrawing.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/ImageFormat.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/ImageProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageProgressive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/ImageProgressive.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/ImageTransition.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Image/Placeholder.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Kingfisher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Kingfisher.h -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/ImageModifier.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/RequestModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/RequestModifier.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/RetryStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/RetryStrategy.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/SessionDataTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/KFImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/SwiftUI/KFImage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/KFImageOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/SwiftUI/KFImageOptions.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Utility/Box.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/CallbackQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Utility/Delegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Utility/Result.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Utility/Runtime.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/SizeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Utility/String+MD5.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Views/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Views/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Kingfisher/Sources/Views/Indicator.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Fakery-Faker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Fakery-Faker.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Fakery.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Fakery.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Kingfisher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Kingfisher.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Pods-DynamicCell-DynamicCellUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Pods-DynamicCell-DynamicCellUITests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Pods-DynamicCell.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Pods-DynamicCell.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Pods-DynamicCellTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/Pods-DynamicCellTests.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Pods.xcodeproj/xcuserdata/mohannad.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Fakery/Fakery-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Fakery/Fakery-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Fakery/Fakery-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Fakery/Fakery-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Fakery/Fakery-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Fakery/Fakery-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Fakery/Fakery-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Fakery/Fakery-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Fakery/Fakery.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Fakery/Fakery.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Fakery/Fakery.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Fakery/Fakery.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Fakery/Fakery.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Fakery/Fakery.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Fakery/ResourceBundle-Faker-Fakery-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Fakery/ResourceBundle-Faker-Fakery-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell-DynamicCellUITests/Pods-DynamicCell-DynamicCellUITests.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks-Debug-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks-Debug-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks-Debug-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks-Debug-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks-Release-input-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks-Release-input-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks-Release-output-files.xcfilelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks-Release-output-files.xcfilelist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCell/Pods-DynamicCell.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/Pods/Target Support Files/Pods-DynamicCellTests/Pods-DynamicCellTests.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MohannadBakbouk/DynamicCell/HEAD/README.md --------------------------------------------------------------------------------