├── .github └── final-animation.gif ├── .gitignore ├── LICENSE ├── README.md ├── StickerViewExample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist └── StickerViewExample ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── cat.imageset │ ├── Contents.json │ └── cat.png └── textSpeckle_Normal.imageset │ ├── Contents.json │ └── textSpeckle_Normal.png ├── ContentView.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── SpoilerView.swift ├── StickerView.swift └── StickerViewExampleApp.swift /.github/final-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/.github/final-animation.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/README.md -------------------------------------------------------------------------------- /StickerViewExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /StickerViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /StickerViewExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /StickerViewExample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /StickerViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /StickerViewExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /StickerViewExample/Assets.xcassets/cat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/Assets.xcassets/cat.imageset/Contents.json -------------------------------------------------------------------------------- /StickerViewExample/Assets.xcassets/cat.imageset/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/Assets.xcassets/cat.imageset/cat.png -------------------------------------------------------------------------------- /StickerViewExample/Assets.xcassets/textSpeckle_Normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/Assets.xcassets/textSpeckle_Normal.imageset/Contents.json -------------------------------------------------------------------------------- /StickerViewExample/Assets.xcassets/textSpeckle_Normal.imageset/textSpeckle_Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/Assets.xcassets/textSpeckle_Normal.imageset/textSpeckle_Normal.png -------------------------------------------------------------------------------- /StickerViewExample/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/ContentView.swift -------------------------------------------------------------------------------- /StickerViewExample/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /StickerViewExample/SpoilerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/SpoilerView.swift -------------------------------------------------------------------------------- /StickerViewExample/StickerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/StickerView.swift -------------------------------------------------------------------------------- /StickerViewExample/StickerViewExampleApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemnovichkov/StickerViewExample/HEAD/StickerViewExample/StickerViewExampleApp.swift --------------------------------------------------------------------------------