├── .github └── ISSUE_TEMPLATE │ ├── bugs.md │ └── new-features.md ├── .gitignore ├── Escapades.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcuserdata │ └── raphaelsalaja.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── Escapades ├── 0. Global Helpers │ └── Modifier+Extensions.swift ├── 1. Layered Stack │ ├── LayeredStackElement.swift │ ├── LayeredStackShowcase.swift │ └── Models │ │ └── Transactions.swift ├── 2. Banter Club │ └── BanterClub.swift ├── 3. Border Radius │ ├── BorderRadiusCalculator.swift │ ├── BorderRadiusCalculatorIllustration.swift │ └── BorderRadiusComponents.swift ├── 5. Link Preview │ ├── LinkPreview.swift │ └── LinkPreviewView.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Chelsea Profile Picture.imageset │ │ ├── Chelsea Profile Picture.png │ │ └── Contents.json │ ├── Chelsea.imageset │ │ ├── Chelsea.png │ │ └── Contents.json │ ├── Contents.json │ ├── Everton.imageset │ │ ├── Contents.json │ │ └── Everton.png │ ├── Rick.imageset │ │ ├── Contents.json │ │ └── Rick.jpg │ └── Youtube.imageset │ │ ├── Contents.json │ │ └── Youtube.png ├── ContentView.swift ├── EscapadesApp.swift └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json ├── LICENSE ├── README.md └── Widgets ├── 1. Screenshots Stash └── SwiftUIView.swift ├── AppIntent.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json └── WidgetBackground.colorset │ └── Contents.json ├── Info.plist ├── WidgetsBundle.swift └── WidgetsLiveActivity.swift /.github/ISSUE_TEMPLATE/bugs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/.github/ISSUE_TEMPLATE/bugs.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/.github/ISSUE_TEMPLATE/new-features.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/.gitignore -------------------------------------------------------------------------------- /Escapades.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Escapades.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Escapades.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Escapades.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Escapades.xcodeproj/xcuserdata/raphaelsalaja.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades.xcodeproj/xcuserdata/raphaelsalaja.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Escapades/0. Global Helpers/Modifier+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/0. Global Helpers/Modifier+Extensions.swift -------------------------------------------------------------------------------- /Escapades/1. Layered Stack/LayeredStackElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/1. Layered Stack/LayeredStackElement.swift -------------------------------------------------------------------------------- /Escapades/1. Layered Stack/LayeredStackShowcase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/1. Layered Stack/LayeredStackShowcase.swift -------------------------------------------------------------------------------- /Escapades/1. Layered Stack/Models/Transactions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/1. Layered Stack/Models/Transactions.swift -------------------------------------------------------------------------------- /Escapades/2. Banter Club/BanterClub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/2. Banter Club/BanterClub.swift -------------------------------------------------------------------------------- /Escapades/3. Border Radius/BorderRadiusCalculator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/3. Border Radius/BorderRadiusCalculator.swift -------------------------------------------------------------------------------- /Escapades/3. Border Radius/BorderRadiusCalculatorIllustration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/3. Border Radius/BorderRadiusCalculatorIllustration.swift -------------------------------------------------------------------------------- /Escapades/3. Border Radius/BorderRadiusComponents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/3. Border Radius/BorderRadiusComponents.swift -------------------------------------------------------------------------------- /Escapades/5. Link Preview/LinkPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/5. Link Preview/LinkPreview.swift -------------------------------------------------------------------------------- /Escapades/5. Link Preview/LinkPreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/5. Link Preview/LinkPreviewView.swift -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Chelsea Profile Picture.imageset/Chelsea Profile Picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Chelsea Profile Picture.imageset/Chelsea Profile Picture.png -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Chelsea Profile Picture.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Chelsea Profile Picture.imageset/Contents.json -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Chelsea.imageset/Chelsea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Chelsea.imageset/Chelsea.png -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Chelsea.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Chelsea.imageset/Contents.json -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Everton.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Everton.imageset/Contents.json -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Everton.imageset/Everton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Everton.imageset/Everton.png -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Rick.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Rick.imageset/Contents.json -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Rick.imageset/Rick.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Rick.imageset/Rick.jpg -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Youtube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Youtube.imageset/Contents.json -------------------------------------------------------------------------------- /Escapades/Assets.xcassets/Youtube.imageset/Youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Assets.xcassets/Youtube.imageset/Youtube.png -------------------------------------------------------------------------------- /Escapades/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/ContentView.swift -------------------------------------------------------------------------------- /Escapades/EscapadesApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/EscapadesApp.swift -------------------------------------------------------------------------------- /Escapades/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Escapades/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/README.md -------------------------------------------------------------------------------- /Widgets/1. Screenshots Stash/SwiftUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/1. Screenshots Stash/SwiftUIView.swift -------------------------------------------------------------------------------- /Widgets/AppIntent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/AppIntent.swift -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Widgets/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/Info.plist -------------------------------------------------------------------------------- /Widgets/WidgetsBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/WidgetsBundle.swift -------------------------------------------------------------------------------- /Widgets/WidgetsLiveActivity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelsalaja/escapades/HEAD/Widgets/WidgetsLiveActivity.swift --------------------------------------------------------------------------------