├── .gitignore ├── App.js ├── app.json ├── assets ├── adaptive-icon.png ├── favicon.png ├── icon.png └── splash.png ├── babel.config.js ├── components └── IgStories.js ├── ios ├── .gitignore ├── .xcode.env ├── IgStories.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ └── IgStories.xcscheme ├── IgStories.xcworkspace │ └── contents.xcworkspacedata ├── IgStories │ ├── AppDelegate.h │ ├── AppDelegate.mm │ ├── IgStories-Bridging-Header.h │ ├── IgStories.entitlements │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── SplashScreen.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ │ └── SplashScreenBackground.imageset │ │ │ ├── Contents.json │ │ │ └── image.png │ ├── Info.plist │ ├── SplashScreen.storyboard │ ├── Supporting │ │ └── Expo.plist │ ├── main.m │ └── noop-file.swift ├── Podfile ├── Podfile.lock └── Podfile.properties.json ├── package.json └── stories.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/.gitignore -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/App.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/app.json -------------------------------------------------------------------------------- /assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/assets/adaptive-icon.png -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/assets/favicon.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/babel.config.js -------------------------------------------------------------------------------- /components/IgStories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/components/IgStories.js -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/.gitignore -------------------------------------------------------------------------------- /ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/.xcode.env -------------------------------------------------------------------------------- /ios/IgStories.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/IgStories.xcodeproj/xcshareddata/xcschemes/IgStories.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories.xcodeproj/xcshareddata/xcschemes/IgStories.xcscheme -------------------------------------------------------------------------------- /ios/IgStories.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ios/IgStories/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/AppDelegate.h -------------------------------------------------------------------------------- /ios/IgStories/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/AppDelegate.mm -------------------------------------------------------------------------------- /ios/IgStories/IgStories-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/IgStories-Bridging-Header.h -------------------------------------------------------------------------------- /ios/IgStories/IgStories.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/IgStories.entitlements -------------------------------------------------------------------------------- /ios/IgStories/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /ios/IgStories/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ios/IgStories/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /ios/IgStories/Images.xcassets/SplashScreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Images.xcassets/SplashScreen.imageset/Contents.json -------------------------------------------------------------------------------- /ios/IgStories/Images.xcassets/SplashScreen.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Images.xcassets/SplashScreen.imageset/image.png -------------------------------------------------------------------------------- /ios/IgStories/Images.xcassets/SplashScreenBackground.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Images.xcassets/SplashScreenBackground.imageset/Contents.json -------------------------------------------------------------------------------- /ios/IgStories/Images.xcassets/SplashScreenBackground.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Images.xcassets/SplashScreenBackground.imageset/image.png -------------------------------------------------------------------------------- /ios/IgStories/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Info.plist -------------------------------------------------------------------------------- /ios/IgStories/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/SplashScreen.storyboard -------------------------------------------------------------------------------- /ios/IgStories/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/Supporting/Expo.plist -------------------------------------------------------------------------------- /ios/IgStories/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/main.m -------------------------------------------------------------------------------- /ios/IgStories/noop-file.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/IgStories/noop-file.swift -------------------------------------------------------------------------------- /ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/Podfile -------------------------------------------------------------------------------- /ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/Podfile.lock -------------------------------------------------------------------------------- /ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/ios/Podfile.properties.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/package.json -------------------------------------------------------------------------------- /stories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/notJust-dev/IGStoryComponent/HEAD/stories.js --------------------------------------------------------------------------------