├── Podfile ├── Podfile.lock ├── Pods ├── Alamofire │ ├── LICENSE │ ├── README.md │ └── Source │ │ ├── AFError.swift │ │ ├── Alamofire.swift │ │ ├── AlamofireExtended.swift │ │ ├── AuthenticationInterceptor.swift │ │ ├── CachedResponseHandler.swift │ │ ├── Combine.swift │ │ ├── Concurrency.swift │ │ ├── DispatchQueue+Alamofire.swift │ │ ├── EventMonitor.swift │ │ ├── HTTPHeaders.swift │ │ ├── HTTPMethod.swift │ │ ├── MultipartFormData.swift │ │ ├── MultipartUpload.swift │ │ ├── NetworkReachabilityManager.swift │ │ ├── Notifications.swift │ │ ├── OperationQueue+Alamofire.swift │ │ ├── ParameterEncoder.swift │ │ ├── ParameterEncoding.swift │ │ ├── Protected.swift │ │ ├── RedirectHandler.swift │ │ ├── Request.swift │ │ ├── RequestInterceptor.swift │ │ ├── RequestTaskMap.swift │ │ ├── Response.swift │ │ ├── ResponseSerialization.swift │ │ ├── Result+Alamofire.swift │ │ ├── RetryPolicy.swift │ │ ├── ServerTrustEvaluation.swift │ │ ├── Session.swift │ │ ├── SessionDelegate.swift │ │ ├── StringEncoding+Alamofire.swift │ │ ├── URLConvertible+URLRequestConvertible.swift │ │ ├── URLEncodedFormEncoder.swift │ │ ├── URLRequest+Alamofire.swift │ │ ├── URLSessionConfiguration+Alamofire.swift │ │ └── Validation.swift ├── Kingfisher │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── Cache │ │ ├── CacheSerializer.swift │ │ ├── DiskStorage.swift │ │ ├── FormatIndicatedCacheSerializer.swift │ │ ├── ImageCache.swift │ │ ├── MemoryStorage.swift │ │ └── Storage.swift │ │ ├── Extensions │ │ ├── CPListItem+Kingfisher.swift │ │ ├── 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 │ │ ├── GraphicsContext.swift │ │ ├── Image.swift │ │ ├── ImageDrawing.swift │ │ ├── ImageFormat.swift │ │ ├── ImageProcessor.swift │ │ ├── ImageProgressive.swift │ │ ├── ImageTransition.swift │ │ └── Placeholder.swift │ │ ├── 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 │ │ ├── ImageContext.swift │ │ ├── KFAnimatedImage.swift │ │ ├── KFImage.swift │ │ ├── KFImageOptions.swift │ │ ├── KFImageProtocol.swift │ │ └── KFImageRenderer.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 │ │ └── sakaifumiya.xcuserdatad │ │ └── xcschemes │ │ ├── Alamofire.xcscheme │ │ ├── Kingfisher.xcscheme │ │ ├── Pods-TinderUISamples.xcscheme │ │ ├── PromiseKit.xcscheme │ │ ├── SwiftyJSON.xcscheme │ │ └── xcschememanagement.plist ├── PromiseKit │ ├── Extensions │ │ ├── Foundation │ │ │ └── Sources │ │ │ │ ├── NSNotificationCenter+AnyPromise.h │ │ │ │ ├── NSNotificationCenter+AnyPromise.m │ │ │ │ ├── NSNotificationCenter+Promise.swift │ │ │ │ ├── NSObject+Promise.swift │ │ │ │ ├── NSTask+AnyPromise.h │ │ │ │ ├── NSTask+AnyPromise.m │ │ │ │ ├── NSURLSession+AnyPromise.h │ │ │ │ ├── NSURLSession+AnyPromise.m │ │ │ │ ├── NSURLSession+Promise.swift │ │ │ │ ├── PMKFoundation.h │ │ │ │ ├── Process+Promise.swift │ │ │ │ └── afterlife.swift │ │ └── UIKit │ │ │ └── Sources │ │ │ ├── PMKUIKit.h │ │ │ ├── UIView+AnyPromise.h │ │ │ ├── UIView+AnyPromise.m │ │ │ ├── UIView+Promise.swift │ │ │ ├── UIViewController+AnyPromise.h │ │ │ ├── UIViewController+AnyPromise.m │ │ │ └── UIViewPropertyAnimator+Promise.swift │ ├── LICENSE │ ├── README.md │ └── Sources │ │ ├── AnyPromise+Private.h │ │ ├── AnyPromise.h │ │ ├── AnyPromise.m │ │ ├── AnyPromise.swift │ │ ├── Box.swift │ │ ├── Catchable.swift │ │ ├── Configuration.swift │ │ ├── CustomStringConvertible.swift │ │ ├── Deprecations.swift │ │ ├── Error.swift │ │ ├── Guarantee.swift │ │ ├── LogEvent.swift │ │ ├── NSMethodSignatureForBlock.m │ │ ├── PMKCallVariadicBlock.m │ │ ├── Promise.swift │ │ ├── PromiseKit.h │ │ ├── Resolver.swift │ │ ├── Thenable.swift │ │ ├── after.m │ │ ├── after.swift │ │ ├── dispatch_promise.m │ │ ├── firstly.swift │ │ ├── fwd.h │ │ ├── hang.m │ │ ├── hang.swift │ │ ├── join.m │ │ ├── race.m │ │ ├── race.swift │ │ ├── when.m │ │ └── when.swift ├── SwiftyJSON │ ├── LICENSE │ ├── README.md │ └── Source │ │ └── SwiftyJSON │ │ └── SwiftyJSON.swift └── Target Support Files │ ├── Alamofire │ ├── Alamofire-Info.plist │ ├── Alamofire-dummy.m │ ├── Alamofire-prefix.pch │ ├── Alamofire-umbrella.h │ ├── Alamofire.debug.xcconfig │ ├── Alamofire.modulemap │ ├── Alamofire.release.xcconfig │ ├── Alamofire.xcconfig │ └── Info.plist │ ├── Kingfisher │ ├── Info.plist │ ├── Kingfisher-Info.plist │ ├── Kingfisher-dummy.m │ ├── Kingfisher-prefix.pch │ ├── Kingfisher-umbrella.h │ ├── Kingfisher.debug.xcconfig │ ├── Kingfisher.modulemap │ ├── Kingfisher.release.xcconfig │ └── Kingfisher.xcconfig │ ├── Pods-TinderUISamples │ ├── Info.plist │ ├── Pods-TinderUISamples-Info.plist │ ├── Pods-TinderUISamples-acknowledgements.markdown │ ├── Pods-TinderUISamples-acknowledgements.plist │ ├── Pods-TinderUISamples-dummy.m │ ├── Pods-TinderUISamples-frameworks.sh │ ├── Pods-TinderUISamples-resources.sh │ ├── Pods-TinderUISamples-umbrella.h │ ├── Pods-TinderUISamples.debug.xcconfig │ ├── Pods-TinderUISamples.modulemap │ └── Pods-TinderUISamples.release.xcconfig │ ├── PromiseKit │ ├── PromiseKit-Info.plist │ ├── PromiseKit-dummy.m │ ├── PromiseKit-prefix.pch │ ├── PromiseKit-umbrella.h │ ├── PromiseKit.debug.xcconfig │ ├── PromiseKit.modulemap │ └── PromiseKit.release.xcconfig │ └── SwiftyJSON │ ├── Info.plist │ ├── SwiftyJSON-Info.plist │ ├── SwiftyJSON-dummy.m │ ├── SwiftyJSON-prefix.pch │ ├── SwiftyJSON-umbrella.h │ ├── SwiftyJSON.debug.xcconfig │ ├── SwiftyJSON.modulemap │ ├── SwiftyJSON.release.xcconfig │ └── SwiftyJSON.xcconfig ├── README.md ├── TinderUISamples.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── sakaifumiya.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── TinderUISamples.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── sakaifumiya.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── TinderUISamples ├── API │ ├── APIConstant.swift │ └── APIRequestManager.swift ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── BaseClass │ └── CustomViewBase.swift ├── DataSet │ └── rakuten_recipe_category_list.csv ├── Extension │ ├── IntExtension.swift │ ├── UIColorExtension.swift │ └── UIImageExtension.swift ├── Info.plist ├── Model │ └── RecipeModel.swift ├── Presenter │ └── RecipePresenter.swift ├── Protocol │ ├── TinderCardDefaultSettings.swift │ └── TinderCardSetting.swift ├── Storyboard │ └── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard ├── TinderUI │ ├── CollectionViewTinderViewController.swift │ └── PureViewTinderViewController.swift ├── ViewComponents │ ├── CollectionViewTinderView │ │ ├── TinderCardCollectionViewCell │ │ │ ├── TinderCardCollectionViewCell.swift │ │ │ └── TinderCardCollectionViewCell.xib │ │ └── TinderCardCollectionViewLayout │ │ │ └── TinderCardCollectionViewLayout.swift │ └── PureViewTinder │ │ └── TinderCardSetView │ │ ├── TinderCardSetView.swift │ │ └── TinderCardSetView.xib └── ViewController.swift ├── TinderUISamplesTests ├── Info.plist └── TinderUISamplesTests.swift └── TinderUISamplesUITests ├── Info.plist └── TinderUISamplesUITests.swift /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Alamofire/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/LICENSE -------------------------------------------------------------------------------- /Pods/Alamofire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/README.md -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AFError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/AFError.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AlamofireExtended.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/AlamofireExtended.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/AuthenticationInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/AuthenticationInterceptor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/CachedResponseHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/CachedResponseHandler.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Combine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Combine.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Concurrency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Concurrency.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/DispatchQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/EventMonitor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/EventMonitor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/HTTPHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/HTTPHeaders.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/HTTPMethod.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/HTTPMethod.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartFormData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/MultipartFormData.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/MultipartUpload.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/MultipartUpload.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/NetworkReachabilityManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/NetworkReachabilityManager.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Notifications.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Notifications.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/OperationQueue+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/OperationQueue+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/ParameterEncoder.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ParameterEncoding.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/ParameterEncoding.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Protected.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Protected.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/RedirectHandler.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Request.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Request.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/RequestInterceptor.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RequestTaskMap.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/RequestTaskMap.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Response.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ResponseSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/ResponseSerialization.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Result+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Result+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/RetryPolicy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/RetryPolicy.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/ServerTrustEvaluation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/ServerTrustEvaluation.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Session.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Session.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/StringEncoding+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/StringEncoding+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/URLConvertible+URLRequestConvertible.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLEncodedFormEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/URLEncodedFormEncoder.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLRequest+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/URLRequest+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/URLSessionConfiguration+Alamofire.swift -------------------------------------------------------------------------------- /Pods/Alamofire/Source/Validation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Alamofire/Source/Validation.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/LICENSE -------------------------------------------------------------------------------- /Pods/Kingfisher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/README.md -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/CacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Cache/CacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/DiskStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Cache/DiskStorage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Cache/FormatIndicatedCacheSerializer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/ImageCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Cache/ImageCache.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/MemoryStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Cache/MemoryStorage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Cache/Storage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Cache/Storage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/CPListItem+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Extensions/CPListItem+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Extensions/ImageView+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Extensions/NSButton+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/NSTextAttachment+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Extensions/NSTextAttachment+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/TVMonogramView+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Extensions/TVMonogramView+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Extensions/UIButton+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Extensions/WKInterfaceImage+Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/AVAssetImageDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/ImageSource/AVAssetImageDataProvider.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/ImageSource/ImageDataProvider.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/Resource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/ImageSource/Resource.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/ImageSource/Source.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/ImageSource/Source.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KF.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/KF.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KFOptionsSetter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/KFOptionsSetter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/Kingfisher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/Kingfisher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/KingfisherError.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/KingfisherManager.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/General/KingfisherOptionsInfo.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/Filter.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/GIFAnimatedImage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/GraphicsContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/GraphicsContext.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/Image.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageDrawing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/ImageDrawing.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/ImageFormat.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/ImageProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageProgressive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/ImageProgressive.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/ImageTransition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/ImageTransition.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Image/Placeholder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Image/Placeholder.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/AuthenticationChallengeResponsable.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/ImageDataProcessor.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/ImageDownloader.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/ImageDownloaderDelegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImageModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/ImageModifier.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/ImagePrefetcher.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/RedirectHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/RedirectHandler.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/RequestModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/RequestModifier.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/RetryStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/RetryStrategy.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/SessionDataTask.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/SessionDataTask.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Networking/SessionDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Networking/SessionDelegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/SwiftUI/ImageBinder.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/ImageContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/SwiftUI/ImageContext.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/KFAnimatedImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/SwiftUI/KFAnimatedImage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/KFImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/SwiftUI/KFImage.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/KFImageOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/SwiftUI/KFImageOptions.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/KFImageProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/SwiftUI/KFImageProtocol.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/SwiftUI/KFImageRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/SwiftUI/KFImageRenderer.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Utility/Box.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/CallbackQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Utility/CallbackQueue.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Utility/Delegate.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Utility/ExtensionHelpers.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Result.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Utility/Result.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/Runtime.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Utility/Runtime.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/SizeExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Utility/SizeExtensions.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Utility/String+MD5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Utility/String+MD5.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Views/AnimatedImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Views/AnimatedImageView.swift -------------------------------------------------------------------------------- /Pods/Kingfisher/Sources/Views/Indicator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Kingfisher/Sources/Views/Indicator.swift -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/Alamofire.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/Alamofire.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/Kingfisher.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/Kingfisher.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/Pods-TinderUISamples.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/Pods-TinderUISamples.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/PromiseKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/PromiseKit.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/SwiftyJSON.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/SwiftyJSON.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Pods.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSNotificationCenter+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSObject+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSObject+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSTask+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/NSURLSession+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/PMKFoundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/PMKFoundation.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/Process+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/Process+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/Foundation/Sources/afterlife.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/Foundation/Sources/afterlife.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/PMKUIKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/PMKUIKit.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIView+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIView+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewController+AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Extensions/UIKit/Sources/UIViewPropertyAnimator+Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Extensions/UIKit/Sources/UIViewPropertyAnimator+Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/LICENSE -------------------------------------------------------------------------------- /Pods/PromiseKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/README.md -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/AnyPromise+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/AnyPromise+Private.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/AnyPromise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/AnyPromise.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/AnyPromise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/AnyPromise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/AnyPromise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/AnyPromise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Box.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Box.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Catchable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Catchable.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Configuration.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/CustomStringConvertible.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/CustomStringConvertible.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Deprecations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Deprecations.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Error.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Guarantee.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Guarantee.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/LogEvent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/LogEvent.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/NSMethodSignatureForBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/NSMethodSignatureForBlock.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/PMKCallVariadicBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/PMKCallVariadicBlock.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Promise.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Promise.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/PromiseKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/PromiseKit.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Resolver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Resolver.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/Thenable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/Thenable.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/after.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/after.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/after.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/after.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/dispatch_promise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/dispatch_promise.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/firstly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/firstly.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/fwd.h -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/hang.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/hang.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/hang.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/hang.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/join.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/join.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/race.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/race.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/race.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/race.swift -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/when.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/when.m -------------------------------------------------------------------------------- /Pods/PromiseKit/Sources/when.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/PromiseKit/Sources/when.swift -------------------------------------------------------------------------------- /Pods/SwiftyJSON/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/SwiftyJSON/LICENSE -------------------------------------------------------------------------------- /Pods/SwiftyJSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/SwiftyJSON/README.md -------------------------------------------------------------------------------- /Pods/SwiftyJSON/Source/SwiftyJSON/SwiftyJSON.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/SwiftyJSON/Source/SwiftyJSON/SwiftyJSON.swift -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Alamofire-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Alamofire-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Alamofire.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Alamofire.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Alamofire.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Alamofire.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Alamofire.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Alamofire/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Alamofire/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Kingfisher/Kingfisher.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/Pods-TinderUISamples/Pods-TinderUISamples.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/PromiseKit/PromiseKit.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/PromiseKit/PromiseKit.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.release.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/Pods/Target Support Files/SwiftyJSON/SwiftyJSON.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/README.md -------------------------------------------------------------------------------- /TinderUISamples.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TinderUISamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TinderUISamples.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples.xcodeproj/xcuserdata/sakaifumiya.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TinderUISamples.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TinderUISamples.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TinderUISamples.xcworkspace/xcuserdata/sakaifumiya.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples.xcworkspace/xcuserdata/sakaifumiya.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TinderUISamples/API/APIConstant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/API/APIConstant.swift -------------------------------------------------------------------------------- /TinderUISamples/API/APIRequestManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/API/APIRequestManager.swift -------------------------------------------------------------------------------- /TinderUISamples/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/AppDelegate.swift -------------------------------------------------------------------------------- /TinderUISamples/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TinderUISamples/BaseClass/CustomViewBase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/BaseClass/CustomViewBase.swift -------------------------------------------------------------------------------- /TinderUISamples/DataSet/rakuten_recipe_category_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/DataSet/rakuten_recipe_category_list.csv -------------------------------------------------------------------------------- /TinderUISamples/Extension/IntExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Extension/IntExtension.swift -------------------------------------------------------------------------------- /TinderUISamples/Extension/UIColorExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Extension/UIColorExtension.swift -------------------------------------------------------------------------------- /TinderUISamples/Extension/UIImageExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Extension/UIImageExtension.swift -------------------------------------------------------------------------------- /TinderUISamples/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Info.plist -------------------------------------------------------------------------------- /TinderUISamples/Model/RecipeModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Model/RecipeModel.swift -------------------------------------------------------------------------------- /TinderUISamples/Presenter/RecipePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Presenter/RecipePresenter.swift -------------------------------------------------------------------------------- /TinderUISamples/Protocol/TinderCardDefaultSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Protocol/TinderCardDefaultSettings.swift -------------------------------------------------------------------------------- /TinderUISamples/Protocol/TinderCardSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Protocol/TinderCardSetting.swift -------------------------------------------------------------------------------- /TinderUISamples/Storyboard/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Storyboard/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /TinderUISamples/Storyboard/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/Storyboard/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /TinderUISamples/TinderUI/CollectionViewTinderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/TinderUI/CollectionViewTinderViewController.swift -------------------------------------------------------------------------------- /TinderUISamples/TinderUI/PureViewTinderViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/TinderUI/PureViewTinderViewController.swift -------------------------------------------------------------------------------- /TinderUISamples/ViewComponents/CollectionViewTinderView/TinderCardCollectionViewCell/TinderCardCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/ViewComponents/CollectionViewTinderView/TinderCardCollectionViewCell/TinderCardCollectionViewCell.swift -------------------------------------------------------------------------------- /TinderUISamples/ViewComponents/CollectionViewTinderView/TinderCardCollectionViewCell/TinderCardCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/ViewComponents/CollectionViewTinderView/TinderCardCollectionViewCell/TinderCardCollectionViewCell.xib -------------------------------------------------------------------------------- /TinderUISamples/ViewComponents/CollectionViewTinderView/TinderCardCollectionViewLayout/TinderCardCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/ViewComponents/CollectionViewTinderView/TinderCardCollectionViewLayout/TinderCardCollectionViewLayout.swift -------------------------------------------------------------------------------- /TinderUISamples/ViewComponents/PureViewTinder/TinderCardSetView/TinderCardSetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/ViewComponents/PureViewTinder/TinderCardSetView/TinderCardSetView.swift -------------------------------------------------------------------------------- /TinderUISamples/ViewComponents/PureViewTinder/TinderCardSetView/TinderCardSetView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/ViewComponents/PureViewTinder/TinderCardSetView/TinderCardSetView.xib -------------------------------------------------------------------------------- /TinderUISamples/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamples/ViewController.swift -------------------------------------------------------------------------------- /TinderUISamplesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamplesTests/Info.plist -------------------------------------------------------------------------------- /TinderUISamplesTests/TinderUISamplesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamplesTests/TinderUISamplesTests.swift -------------------------------------------------------------------------------- /TinderUISamplesUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamplesUITests/Info.plist -------------------------------------------------------------------------------- /TinderUISamplesUITests/TinderUISamplesUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fumiyasac/TinderUISamples/HEAD/TinderUISamplesUITests/TinderUISamplesUITests.swift --------------------------------------------------------------------------------