├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── LICENSE ├── Package.swift ├── README.md ├── Resources ├── IGStoryKitCover.png ├── LICENSE.md └── ig-story-kit-bg-type.png ├── Sources └── IGStoryKit │ ├── Extension │ ├── String+.swift │ ├── UIApplication+.swift │ └── UIColor+toHex.swift │ ├── IGDispatcher.swift │ └── Model │ ├── Background.swift │ ├── IGStory.swift │ ├── IGStoryDomains.swift │ └── Link.swift └── Tests ├── IGStoryKitTests ├── IGStoryKitTests.swift └── XCTestManifests.swift └── LinuxMain.swift /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /.build 3 | /Packages 4 | /*.xcodeproj 5 | xcuserdata/ 6 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/README.md -------------------------------------------------------------------------------- /Resources/IGStoryKitCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Resources/IGStoryKitCover.png -------------------------------------------------------------------------------- /Resources/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Resources/LICENSE.md -------------------------------------------------------------------------------- /Resources/ig-story-kit-bg-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Resources/ig-story-kit-bg-type.png -------------------------------------------------------------------------------- /Sources/IGStoryKit/Extension/String+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Sources/IGStoryKit/Extension/String+.swift -------------------------------------------------------------------------------- /Sources/IGStoryKit/Extension/UIApplication+.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Sources/IGStoryKit/Extension/UIApplication+.swift -------------------------------------------------------------------------------- /Sources/IGStoryKit/Extension/UIColor+toHex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Sources/IGStoryKit/Extension/UIColor+toHex.swift -------------------------------------------------------------------------------- /Sources/IGStoryKit/IGDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Sources/IGStoryKit/IGDispatcher.swift -------------------------------------------------------------------------------- /Sources/IGStoryKit/Model/Background.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Sources/IGStoryKit/Model/Background.swift -------------------------------------------------------------------------------- /Sources/IGStoryKit/Model/IGStory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Sources/IGStoryKit/Model/IGStory.swift -------------------------------------------------------------------------------- /Sources/IGStoryKit/Model/IGStoryDomains.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Sources/IGStoryKit/Model/IGStoryDomains.swift -------------------------------------------------------------------------------- /Sources/IGStoryKit/Model/Link.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Sources/IGStoryKit/Model/Link.swift -------------------------------------------------------------------------------- /Tests/IGStoryKitTests/IGStoryKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Tests/IGStoryKitTests/IGStoryKitTests.swift -------------------------------------------------------------------------------- /Tests/IGStoryKitTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Tests/IGStoryKitTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwapnanilDhol/IGStoryKit/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------