├── .github ├── 2024-04-26-1.png ├── 2024-04-26-2.png ├── 2024-04-26-3.png ├── 2024-04-26-4.png └── README.md ├── .gitignore ├── App ├── Account │ ├── AccountView.swift │ └── SignUpView.swift ├── App.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── FoodTruckIcon.png │ │ ├── icon_128x128.png │ │ ├── icon_128x128@2x.png │ │ ├── icon_16x16.png │ │ ├── icon_16x16@2x.png │ │ ├── icon_256x256.png │ │ ├── icon_256x256@2x.png │ │ ├── icon_32x32.png │ │ ├── icon_32x32@2x.png │ │ ├── icon_512x512.png │ │ └── icon_512x512@2x.png │ ├── BarAnnotationColor.colorset │ │ └── Contents.json │ ├── BarBottomColor.colorset │ │ └── Contents.json │ ├── Contents.json │ ├── Delivery Status BG 1.colorset │ │ └── Contents.json │ └── Delivery Status BG 2.colorset │ │ └── Contents.json ├── City │ ├── CityView.swift │ ├── CityWeatherCard.swift │ ├── DetailedMapView.swift │ ├── ParkingSpotShowcaseView.swift │ └── RecommendedParkingSpotCard.swift ├── Donut │ ├── DonutEditor.swift │ ├── DonutGallery.swift │ ├── DonutGalleryGrid.swift │ ├── ShowTopDonutsIntent.swift │ ├── ShowTopDonutsIntentView.swift │ ├── TopDonutSalesChart.swift │ ├── TopFiveDonutsChart.swift │ └── TopFiveDonutsView.swift ├── Entitlements-All.entitlements ├── Entitlements.entitlements ├── Food-Truck-All-Info.plist ├── Food-Truck-Info.plist ├── General │ ├── FlowLayout.swift │ └── WidthThresholdReader.swift ├── Navigation │ ├── ContentView.swift │ ├── DetailColumn.swift │ └── Sidebar.swift ├── Orders │ ├── OrderCompleteView.swift │ ├── OrderDetailView.swift │ ├── OrderRow.swift │ ├── OrdersTable.swift │ └── OrdersView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Store │ ├── Products.storekit │ ├── RefundView.swift │ ├── SocialFeedPlusSettings.swift │ ├── StoreSupportView.swift │ ├── SubscriptionStoreView.swift │ └── UnlockFeatureView.swift ├── Truck │ ├── Cards │ │ ├── CardNavigationHeader.swift │ │ ├── CardNavigationHeaderLabelStyle.swift │ │ ├── TruckDonutsCard.swift │ │ ├── TruckOrdersCard.swift │ │ ├── TruckSocialFeedCard.swift │ │ └── TruckWeatherCard.swift │ ├── SalesHistoryChart.swift │ ├── SalesHistoryView.swift │ ├── SocialFeedContent.swift │ ├── SocialFeedPostView.swift │ ├── SocialFeedView.swift │ └── TruckView.swift ├── ar.lproj │ ├── AppShortcuts.strings │ └── Localizable.strings └── en.lproj │ ├── AppShortcuts.strings │ └── Localizable.strings ├── Configuration └── SampleCode.xcconfig ├── Food Truck.xcodeproj ├── .xcodesamplecode.plist ├── project.pbxproj ├── project.xcworkspace │ └── xcshareddata │ │ └── WorkspaceSettings.xcsettings └── xcshareddata │ └── xcschemes │ ├── Food Truck All.xcscheme │ ├── Food Truck.xcscheme │ ├── FoodTruckKit.xcscheme │ └── Widgets.xcscheme ├── FoodTruckKit ├── Benchmarks │ ├── Package.swift │ └── Sources │ │ └── Benchmarks.swift ├── Client │ ├── Package.swift │ └── Sources │ │ └── main.swift ├── Package.swift ├── README.md └── Sources │ ├── Account │ ├── AccountStore.swift │ └── User.swift │ ├── Assets.xcassets │ ├── Contents.json │ ├── box │ │ ├── Bottom.imageset │ │ │ ├── BoxBottom.png │ │ │ ├── BoxBottom@2x.png │ │ │ ├── BoxBottom@3x.png │ │ │ └── Contents.json │ │ ├── Composed.imageset │ │ │ ├── BoxPreview.png │ │ │ ├── BoxPreview@2x.png │ │ │ ├── BoxPreview@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Inside.imageset │ │ │ ├── BoxInside.png │ │ │ ├── BoxInside@2x.png │ │ │ ├── BoxInside@3x.png │ │ │ └── Contents.json │ │ └── Lid.imageset │ │ │ ├── BoxLid.png │ │ │ ├── BoxLid@2x.png │ │ │ ├── BoxLid@3x.png │ │ │ └── Contents.json │ ├── donut │ │ ├── Contents.json │ │ ├── colors │ │ │ ├── Contents.json │ │ │ └── sugar.colorset │ │ │ │ └── Contents.json │ │ ├── donut.symbolset │ │ │ ├── Contents.json │ │ │ └── donut.svg │ │ ├── dough │ │ │ ├── Contents.json │ │ │ ├── blue-bg.colorset │ │ │ │ └── Contents.json │ │ │ ├── blue-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── blue-full.png │ │ │ │ ├── blue-full@2x.png │ │ │ │ └── blue-full@3x.png │ │ │ ├── blue-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── blue-thumb.png │ │ │ │ ├── blue-thumb@2x.png │ │ │ │ └── blue-thumb@3x.png │ │ │ ├── brown-bg.colorset │ │ │ │ └── Contents.json │ │ │ ├── brown-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── brown-full.png │ │ │ │ ├── brown-full@2x.png │ │ │ │ └── brown-full@3x.png │ │ │ ├── brown-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── brown-thumb.png │ │ │ │ ├── brown-thumb@2x.png │ │ │ │ └── brown-thumb@3x.png │ │ │ ├── green-bg.colorset │ │ │ │ └── Contents.json │ │ │ ├── green-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── green-full.png │ │ │ │ ├── green-full@2x.png │ │ │ │ └── green-full@3x.png │ │ │ ├── green-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── green-thumb.png │ │ │ │ ├── green-thumb@2x.png │ │ │ │ └── green-thumb@3x.png │ │ │ ├── pink-bg.colorset │ │ │ │ └── Contents.json │ │ │ ├── pink-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pink-full.png │ │ │ │ ├── pink-full@2x.png │ │ │ │ └── pink-full@3x.png │ │ │ ├── pink-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pink-thumb.png │ │ │ │ ├── pink-thumb@2x.png │ │ │ │ └── pink-thumb@3x.png │ │ │ ├── plain-bg.colorset │ │ │ │ └── Contents.json │ │ │ ├── plain-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── plain-full.png │ │ │ │ ├── plain-full@2x.png │ │ │ │ └── plain-full@3x.png │ │ │ ├── plain-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── plain-thumb.png │ │ │ │ ├── plain-thumb@2x.png │ │ │ │ └── plain-thumb@3x.png │ │ │ ├── white-bg.colorset │ │ │ │ └── Contents.json │ │ │ ├── white-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── white-full.png │ │ │ │ ├── white-full@2x.png │ │ │ │ └── white-full@3x.png │ │ │ ├── white-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── white-thumb.png │ │ │ │ ├── white-thumb@2x.png │ │ │ │ └── white-thumb@3x.png │ │ │ ├── yellow-bg.colorset │ │ │ │ └── Contents.json │ │ │ ├── yellow-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dough-yellow-full.png │ │ │ │ ├── dough-yellow-full@2x.png │ │ │ │ └── dough-yellow-full@3x.png │ │ │ └── yellow-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── dough-yellow-thumb.png │ │ │ │ ├── dough-yellow-thumb@2x.png │ │ │ │ └── dough-yellow-thumb@3x.png │ │ ├── glaze │ │ │ ├── Contents.json │ │ │ ├── blue-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── blue-full.png │ │ │ │ ├── blue-full@2x.png │ │ │ │ └── blue-full@3x.png │ │ │ ├── blue-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── blue-thumb.png │ │ │ │ ├── blue-thumb@2x.png │ │ │ │ └── blue-thumb@3x.png │ │ │ ├── brown-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── brown-full.png │ │ │ │ ├── brown-full@2x.png │ │ │ │ └── brown-full@3x.png │ │ │ ├── brown-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── brown-thumb.png │ │ │ │ ├── brown-thumb@2x.png │ │ │ │ └── brown-thumb@3x.png │ │ │ ├── green-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── green-full.png │ │ │ │ ├── green-full@2x.png │ │ │ │ └── green-full@3x.png │ │ │ ├── green-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── green-thumb.png │ │ │ │ ├── green-thumb@2x.png │ │ │ │ └── green-thumb@3x.png │ │ │ ├── orange-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── orange-full.png │ │ │ │ ├── orange-full@2x.png │ │ │ │ └── orange-full@3x.png │ │ │ ├── orange-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── orange-thumb.png │ │ │ │ ├── orange-thumb@2x.png │ │ │ │ └── orange-thumb@3x.png │ │ │ ├── pink-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pink-full.png │ │ │ │ ├── pink-full@2x.png │ │ │ │ └── pink-full@3x.png │ │ │ ├── pink-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── pink-thumb.png │ │ │ │ ├── pink-thumb@2x.png │ │ │ │ └── pink-thumb@3x.png │ │ │ ├── rainbow-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── rainbow-full.png │ │ │ │ ├── rainbow-full@2x.png │ │ │ │ └── rainbow-full@3x.png │ │ │ ├── rainbow-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── rainbow-thumb.png │ │ │ │ ├── rainbow-thumb@2x.png │ │ │ │ └── rainbow-thumb@3x.png │ │ │ ├── yellow-full.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yellow-full.png │ │ │ │ ├── yellow-full@2x.png │ │ │ │ └── yellow-full@3x.png │ │ │ └── yellow-thumb.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── yellow-thumb.png │ │ │ │ ├── yellow-thumb@2x.png │ │ │ │ └── yellow-thumb@3x.png │ │ └── topping │ │ │ ├── Contents.json │ │ │ ├── crisscross-blue-full.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-blue-full.png │ │ │ ├── crisscross-blue-full@2x.png │ │ │ └── crisscross-blue-full@3x.png │ │ │ ├── crisscross-blue-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-blue-thumb.png │ │ │ ├── crisscross-blue-thumb@2x.png │ │ │ └── crisscross-blue-thumb@3x.png │ │ │ ├── crisscross-brown-full.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-brown-full.png │ │ │ ├── crisscross-brown-full@2x.png │ │ │ └── crisscross-brown-full@3x.png │ │ │ ├── crisscross-brown-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-brown-thumb.png │ │ │ ├── crisscross-brown-thumb@2x.png │ │ │ └── crisscross-brown-thumb@3x.png │ │ │ ├── crisscross-green-full.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-green-full.png │ │ │ ├── crisscross-green-full@2x.png │ │ │ └── crisscross-green-full@3x.png │ │ │ ├── crisscross-green-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-green-thumb.png │ │ │ ├── crisscross-green-thumb@2x.png │ │ │ └── crisscross-green-thumb@3x.png │ │ │ ├── crisscross-orange-full.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-orange-full.png │ │ │ ├── crisscross-orange-full@2x.png │ │ │ └── crisscross-orange-full@3x.png │ │ │ ├── crisscross-orange-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-orange-thumb.png │ │ │ ├── crisscross-orange-thumb@2x.png │ │ │ └── crisscross-orange-thumb@3x.png │ │ │ ├── crisscross-pink-full.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-pink-full.png │ │ │ ├── crisscross-pink-full@2x.png │ │ │ └── crisscross-pink-full@3x.png │ │ │ ├── crisscross-pink-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-pink-thumb.png │ │ │ ├── crisscross-pink-thumb@2x.png │ │ │ └── crisscross-pink-thumb@3x.png │ │ │ ├── crisscross-white-full.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-white-full.png │ │ │ ├── crisscross-white-full@2x.png │ │ │ └── crisscross-white-full@3x.png │ │ │ ├── crisscross-white-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-white-thumb.png │ │ │ ├── crisscross-white-thumb@2x.png │ │ │ └── crisscross-white-thumb@3x.png │ │ │ ├── crisscross-yellow-full.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-yellow-full.png │ │ │ ├── crisscross-yellow-full@2x.png │ │ │ └── crisscross-yellow-full@3x.png │ │ │ ├── crisscross-yellow-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── crisscross-yellow-thumb.png │ │ │ ├── crisscross-yellow-thumb@2x.png │ │ │ └── crisscross-yellow-thumb@3x.png │ │ │ ├── powdersugar-full.imageset │ │ │ ├── Contents.json │ │ │ ├── powdersugar-full.png │ │ │ ├── powdersugar-full@2x.png │ │ │ └── powdersugar-full@3x.png │ │ │ ├── powdersugar-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── powdersugar-thumb.png │ │ │ ├── powdersugar-thumb@2x.png │ │ │ └── powdersugar-thumb@3x.png │ │ │ ├── sprinkles-full.imageset │ │ │ ├── Contents.json │ │ │ ├── sprinkles-full.png │ │ │ ├── sprinkles-full@2x.png │ │ │ └── sprinkles-full@3x.png │ │ │ ├── sprinkles-stars-full.imageset │ │ │ ├── Contents.json │ │ │ ├── sprinkles-stars-full.png │ │ │ ├── sprinkles-stars-full@2x.png │ │ │ └── sprinkles-stars-full@3x.png │ │ │ ├── sprinkles-stars-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── sprinkles-stars-thumb.png │ │ │ ├── sprinkles-stars-thumb@2x.png │ │ │ └── sprinkles-stars-thumb@3x.png │ │ │ ├── sprinkles-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── sprinkles-thumb.png │ │ │ ├── sprinkles-thumb@2x.png │ │ │ └── sprinkles-thumb@3x.png │ │ │ ├── straight-blue-full.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-blue-full.png │ │ │ ├── straight-blue-full@2x.png │ │ │ └── straight-blue-full@3x.png │ │ │ ├── straight-blue-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-blue-thumb.png │ │ │ ├── straight-blue-thumb@2x.png │ │ │ └── straight-blue-thumb@3x.png │ │ │ ├── straight-brown-full.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-brown-full.png │ │ │ ├── straight-brown-full@2x.png │ │ │ └── straight-brown-full@3x.png │ │ │ ├── straight-brown-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-brown-thumb.png │ │ │ ├── straight-brown-thumb@2x.png │ │ │ └── straight-brown-thumb@3x.png │ │ │ ├── straight-green-full.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-green-full.png │ │ │ ├── straight-green-full@2x.png │ │ │ └── straight-green-full@3x.png │ │ │ ├── straight-green-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-green-thumb.png │ │ │ ├── straight-green-thumb@2x.png │ │ │ └── straight-green-thumb@3x.png │ │ │ ├── straight-orange-full.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-orange-full.png │ │ │ ├── straight-orange-full@2x.png │ │ │ └── straight-orange-full@3x.png │ │ │ ├── straight-orange-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-orange-thumb.png │ │ │ ├── straight-orange-thumb@2x.png │ │ │ └── straight-orange-thumb@3x.png │ │ │ ├── straight-pink-full.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-pink-full.png │ │ │ ├── straight-pink-full@2x.png │ │ │ └── straight-pink-full@3x.png │ │ │ ├── straight-pink-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-pink-thumb.png │ │ │ ├── straight-pink-thumb@2x.png │ │ │ └── straight-pink-thumb@3x.png │ │ │ ├── straight-white-full.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-white-full.png │ │ │ ├── straight-white-full@2x.png │ │ │ └── straight-white-full@3x.png │ │ │ ├── straight-white-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-white-thumb.png │ │ │ ├── straight-white-thumb@2x.png │ │ │ └── straight-white-thumb@3x.png │ │ │ ├── straight-yellow-full.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-yellow-full.png │ │ │ ├── straight-yellow-full@2x.png │ │ │ └── straight-yellow-full@3x.png │ │ │ ├── straight-yellow-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── straight-yellow-thumb.png │ │ │ ├── straight-yellow-thumb@2x.png │ │ │ └── straight-yellow-thumb@3x.png │ │ │ ├── zigzag-blue-full.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-blue-full.png │ │ │ ├── zigzag-blue-full@2x.png │ │ │ └── zigzag-blue-full@3x.png │ │ │ ├── zigzag-blue-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-blue-thumb.png │ │ │ ├── zigzag-blue-thumb@2x.png │ │ │ └── zigzag-blue-thumb@3x.png │ │ │ ├── zigzag-brown-full.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-brown-full.png │ │ │ ├── zigzag-brown-full@2x.png │ │ │ └── zigzag-brown-full@3x.png │ │ │ ├── zigzag-brown-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-brown-thumb.png │ │ │ ├── zigzag-brown-thumb@2x.png │ │ │ └── zigzag-brown-thumb@3x.png │ │ │ ├── zigzag-green-full.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-green-full.png │ │ │ ├── zigzag-green-full@2x.png │ │ │ └── zigzag-green-full@3x.png │ │ │ ├── zigzag-green-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-green-thumb.png │ │ │ ├── zigzag-green-thumb@2x.png │ │ │ └── zigzag-green-thumb@3x.png │ │ │ ├── zigzag-orange-full.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-orange-full.png │ │ │ ├── zigzag-orange-full@2x.png │ │ │ └── zigzag-orange-full@3x.png │ │ │ ├── zigzag-orange-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-orange-thumb.png │ │ │ ├── zigzag-orange-thumb@2x.png │ │ │ └── zigzag-orange-thumb@3x.png │ │ │ ├── zigzag-pink-full.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-pink-full.png │ │ │ ├── zigzag-pink-full@2x.png │ │ │ └── zigzag-pink-full@3x.png │ │ │ ├── zigzag-pink-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-pink-thumb.png │ │ │ ├── zigzag-pink-thumb@2x.png │ │ │ └── zigzag-pink-thumb@3x.png │ │ │ ├── zigzag-white-full.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-white-full.png │ │ │ ├── zigzag-white-full@2x.png │ │ │ └── zigzag-white-full@3x.png │ │ │ ├── zigzag-white-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-white-thumb.png │ │ │ ├── zigzag-white-thumb@2x.png │ │ │ └── zigzag-white-thumb@3x.png │ │ │ ├── zigzag-yellow-full.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-yellow-full.png │ │ │ ├── zigzag-yellow-full@2x.png │ │ │ └── zigzag-yellow-full@3x.png │ │ │ └── zigzag-yellow-thumb.imageset │ │ │ ├── Contents.json │ │ │ ├── zigzag-yellow-thumb.png │ │ │ ├── zigzag-yellow-thumb@2x.png │ │ │ └── zigzag-yellow-thumb@3x.png │ ├── flavors │ │ ├── Contents.json │ │ ├── bitter.symbolset │ │ │ ├── Contents.json │ │ │ └── bitter.svg │ │ ├── salty.symbolset │ │ │ ├── Contents.json │ │ │ └── salty.svg │ │ ├── sour.symbolset │ │ │ ├── Contents.json │ │ │ └── sour.svg │ │ ├── spicy.symbolset │ │ │ ├── Contents.json │ │ │ └── spicy.svg │ │ └── sweet.symbolset │ │ │ ├── Contents.json │ │ │ └── sweet.svg │ └── header │ │ ├── Contents.json │ │ ├── Sky End.colorset │ │ └── Contents.json │ │ ├── Sky Start.colorset │ │ └── Contents.json │ │ ├── Static.imageset │ │ ├── Contents.json │ │ ├── Static Header.png │ │ ├── Static Header@2x.png │ │ └── Static Header@3x.png │ │ ├── layer │ │ ├── 1 Small Clouds.imageset │ │ │ ├── 1_smallClouds.png │ │ │ ├── 1_smallClouds@2x.png │ │ │ ├── 1_smallClouds@3x.png │ │ │ └── Contents.json │ │ ├── 2 Medium Clouds.imageset │ │ │ ├── 2_mediumClouds.png │ │ │ ├── 2_mediumClouds@2x.png │ │ │ ├── 2_mediumClouds@3x.png │ │ │ └── Contents.json │ │ ├── 3 Mountains.imageset │ │ │ ├── 3_mountains.png │ │ │ ├── 3_mountains@2x.png │ │ │ ├── 3_mountains@3x.png │ │ │ └── Contents.json │ │ ├── 4 Big Clouds.imageset │ │ │ ├── 4_bigClouds.png │ │ │ ├── 4_bigClouds@2x.png │ │ │ ├── 4_bigClouds@3x.png │ │ │ └── Contents.json │ │ ├── 5 Ocean.imageset │ │ │ ├── 5cean.png │ │ │ ├── 5cean@2x.png │ │ │ ├── 5cean@3x.png │ │ │ └── Contents.json │ │ ├── 6 Balloons.imageset │ │ │ ├── 6_balloons&ships.png │ │ │ ├── 6_balloons&ships@2x.png │ │ │ ├── 6_balloons&ships@3x.png │ │ │ └── Contents.json │ │ ├── 7 Trees.imageset │ │ │ ├── 7_treeBackground.png │ │ │ ├── 7_treeBackground@2x.png │ │ │ ├── 7_treeBackground@3x.png │ │ │ └── Contents.json │ │ ├── 8 Road.imageset │ │ │ ├── Contents.json │ │ │ ├── Road.png │ │ │ ├── Road@2x.png │ │ │ └── Road@3x.png │ │ ├── 9 Foreground.imageset │ │ │ ├── 9_foreground.png │ │ │ ├── 9_foreground@2x.png │ │ │ ├── 9_foreground@3x.png │ │ │ └── Contents.json │ │ └── Contents.json │ │ └── truck │ │ ├── Contents.json │ │ ├── Frame 1.imageset │ │ ├── Contents.json │ │ ├── foodTruck_frame1.png │ │ ├── foodTruck_frame1@2x.png │ │ └── foodTruck_frame1@3x.png │ │ ├── Frame 2.imageset │ │ ├── Contents.json │ │ ├── foodTruck_frame2.png │ │ ├── foodTruck_frame2@2x.png │ │ └── foodTruck_frame2@3x.png │ │ ├── Frame 3.imageset │ │ ├── Contents.json │ │ ├── foodTruck_frame3.png │ │ ├── foodTruck_frame3@2x.png │ │ └── foodTruck_frame3@3x.png │ │ └── Frame 4.imageset │ │ ├── Contents.json │ │ ├── foodTruck_frame4.png │ │ ├── foodTruck_frame4@2x.png │ │ └── foodTruck_frame4@3x.png │ ├── Brand │ └── BrandHeader.swift │ ├── City │ ├── City.swift │ └── ParkingSpot.swift │ ├── Donut │ ├── DiagonalDonutStackLayout.swift │ ├── Donut.swift │ ├── DonutBoxView.swift │ ├── DonutRenderer.swift │ ├── DonutSales.swift │ ├── DonutStackView.swift │ ├── DonutView.swift │ ├── FlavorProfile.swift │ └── Ingredients │ │ ├── Dough.swift │ │ ├── Glaze.swift │ │ ├── Ingredient.swift │ │ └── Topping.swift │ ├── General │ ├── Images.swift │ ├── Interpolation.swift │ └── TaskSeconds.swift │ ├── Model │ └── FoodTruckModel.swift │ ├── Order │ ├── Order.swift │ ├── OrderGenerator.swift │ └── OrderSummary.swift │ ├── Resources │ ├── ar.lproj │ │ └── Localizable.strings │ └── en.lproj │ │ └── Localizable.strings │ ├── Store │ ├── StoreActor.swift │ ├── StoreMessagesManager.swift │ ├── StoreProductController.swift │ ├── StoreSubscriptionController.swift │ └── Subscription.swift │ └── Truck.swift ├── LICENSE.txt ├── README.md └── Widgets ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AccentColorDimmed.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json ├── Contents.json ├── IslandCompactIcon.imageset │ ├── Contents.json │ ├── Food Truck Compact@1x.png │ ├── Food Truck Compact@2x.png │ └── Food Truck Compact@3x.png ├── IslandExpandedIcon.imageset │ ├── Contents.json │ ├── Food Truck Expanded@1x.png │ ├── Food Truck Expanded@2x.png │ └── Food Truck Expanded@3x.png ├── LightIndigo.colorset │ └── Contents.json ├── LiveActivityBackground.colorset │ └── Contents.json └── WidgetBackground.colorset │ └── Contents.json ├── Config.xcconfig ├── DailyDonutWidget.swift ├── Info.plist ├── OrdersWidget.swift ├── ParkingSpotAccessory.swift ├── SegmentedGauge.swift ├── TruckActivityAttributes.swift ├── TruckActivityWidget.swift ├── WidgetColors.swift ├── Widgets.entitlements ├── Widgets.swift ├── ar.lproj └── Localizable.strings └── macOS.entitlements /.github/2024-04-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/.github/2024-04-26-1.png -------------------------------------------------------------------------------- /.github/2024-04-26-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/.github/2024-04-26-2.png -------------------------------------------------------------------------------- /.github/2024-04-26-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/.github/2024-04-26-3.png -------------------------------------------------------------------------------- /.github/2024-04-26-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/.github/2024-04-26-4.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See LICENSE folder for this sample’s licensing information. 2 | # 3 | # Apple sample code gitignore configuration. 4 | 5 | # Finder 6 | .DS_Store 7 | 8 | # Xcode - User files 9 | xcuserdata/ 10 | 11 | **/*.xcodeproj/project.xcworkspace/* 12 | !**/*.xcodeproj/project.xcworkspace/xcshareddata 13 | 14 | **/*.xcodeproj/project.xcworkspace/xcshareddata/* 15 | !**/*.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings 16 | 17 | **/*.playground/playground.xcworkspace/* 18 | !**/*.playground/playground.xcworkspace/xcshareddata 19 | 20 | **/*.playground/playground.xcworkspace/xcshareddata/* 21 | !**/*.playground/playground.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings 22 | -------------------------------------------------------------------------------- /App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "platform" : "universal", 6 | "reference" : "systemIndigoColor" 7 | }, 8 | "idiom" : "universal" 9 | } 10 | ], 11 | "info" : { 12 | "author" : "xcode", 13 | "version" : 1 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/FoodTruckIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/FoodTruckIcon.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /App/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/App/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /App/Assets.xcassets/BarAnnotationColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "1.000", 9 | "green" : "1.000", 10 | "red" : "1.000" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0.330", 27 | "green" : "0.000", 28 | "red" : "0.000" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /App/Assets.xcassets/BarBottomColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "0.880", 8 | "blue" : "1.000", 9 | "green" : "0.880", 10 | "red" : "0.800" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "0.880", 26 | "blue" : "0.200", 27 | "green" : "0.000", 28 | "red" : "0.000" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /App/Assets.xcassets/Delivery Status BG 1.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.486", 9 | "green" : "0.188", 10 | "red" : "0.282" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0.922", 27 | "green" : "0.443", 28 | "red" : "0.773" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /App/Assets.xcassets/Delivery Status BG 2.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0.180", 9 | "green" : "0.047", 10 | "red" : "0.133" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0.498", 27 | "green" : "0.024", 28 | "red" : "0.333" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /App/Donut/ShowTopDonutsIntentView.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | The "Show Top Donuts Intent" view. 6 | */ 7 | 8 | import SwiftUI 9 | import FoodTruckKit 10 | 11 | struct ShowTopDonutsIntentView: View { 12 | var timeframe: Timeframe 13 | @StateObject private var model = FoodTruckModel() 14 | 15 | var body: some View { 16 | TopFiveDonutsChart(model: model, timeframe: timeframe) 17 | .padding() 18 | } 19 | } 20 | 21 | struct TopFiveDonutsIntentView_Previews: PreviewProvider { 22 | static var previews: some View { 23 | ShowTopDonutsIntentView(timeframe: .week) 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /App/Entitlements-All.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.associated-domains 6 | 7 | webcredentials:example.com 8 | 9 | com.apple.developer.weatherkit 10 | 11 | com.apple.security.app-sandbox 12 | 13 | com.apple.security.files.user-selected.read-only 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /App/Entitlements.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.files.user-selected.read-only 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /App/Food-Truck-All-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSSupportsLiveActivities 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /App/Food-Truck-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSSupportsLiveActivities 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /App/ar.lproj/AppShortcuts.strings: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | A localization file for App Shortcut phrases. 6 | */ 7 | 8 | /* Intents. Donut-charts label, top donuts. */ 9 | "${applicationName} Trends for ${timeframe}" = "${timeframe} أفضل الدونات لـ ${applicationName}"; 10 | -------------------------------------------------------------------------------- /App/en.lproj/AppShortcuts.strings: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | A localization file for App Shortcut phrases. 6 | */ 7 | 8 | /* Intents. Donut-charts label, trends. */ 9 | "${applicationName} Trends for ${timeframe}" = "${applicationName} Trends for ${timeframe}"; 10 | -------------------------------------------------------------------------------- /Configuration/SampleCode.xcconfig: -------------------------------------------------------------------------------- 1 | // 2 | // See the LICENSE.txt file for this sample’s licensing information. 3 | // 4 | // SampleCode.xcconfig 5 | // 6 | 7 | // The `SAMPLE_CODE_DISAMBIGUATOR` configuration is to make it easier to build 8 | // and run a sample code project. Once you set your project's development team, 9 | // you'll have a unique bundle identifier. This is because the bundle identifier 10 | // is derived based on the 'SAMPLE_CODE_DISAMBIGUATOR' value. Do not use this 11 | // approach in your own projects—it's only useful for sample code projects because 12 | // they are frequently downloaded and don't have a development team set. 13 | SAMPLE_CODE_DISAMBIGUATOR=${DEVELOPMENT_TEAM} 14 | -------------------------------------------------------------------------------- /Food Truck.xcodeproj/.xcodesamplecode.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Food Truck.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildSystemType 6 | Latest 7 | 8 | 9 | -------------------------------------------------------------------------------- /FoodTruckKit/Client/Package.swift: -------------------------------------------------------------------------------- 1 | // swift-tools-version: 5.9.2 2 | // The swift-tools-version declares the minimum version of Swift required to build this package. 3 | 4 | import PackageDescription 5 | 6 | let package = Package( 7 | name: "Client", 8 | platforms: [ 9 | .macOS("13.3"), 10 | ], 11 | dependencies: [ 12 | .package( 13 | name: "FoodTruckKit", 14 | path: ".." 15 | ), 16 | ], 17 | targets: [ 18 | .executableTarget( 19 | name: "Client", 20 | dependencies: [ 21 | "FoodTruckKit", 22 | ] 23 | ), 24 | ] 25 | ) 26 | -------------------------------------------------------------------------------- /FoodTruckKit/README.md: -------------------------------------------------------------------------------- 1 | # FoodTruckKit 2 | 3 | A description of this package. 4 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Account/User.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | A model object to store user status. 6 | */ 7 | 8 | public enum User { 9 | case `default` 10 | case authenticated(username: String) 11 | 12 | public init(username: String) { 13 | self = .authenticated(username: username) 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Bottom.imageset/BoxBottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Bottom.imageset/BoxBottom.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Bottom.imageset/BoxBottom@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Bottom.imageset/BoxBottom@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Bottom.imageset/BoxBottom@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Bottom.imageset/BoxBottom@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Bottom.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "BoxBottom.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "BoxBottom@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "BoxBottom@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Composed.imageset/BoxPreview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Composed.imageset/BoxPreview.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Composed.imageset/BoxPreview@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Composed.imageset/BoxPreview@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Composed.imageset/BoxPreview@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Composed.imageset/BoxPreview@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Composed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "BoxPreview.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "BoxPreview@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "BoxPreview@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Inside.imageset/BoxInside.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Inside.imageset/BoxInside.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Inside.imageset/BoxInside@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Inside.imageset/BoxInside@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Inside.imageset/BoxInside@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Inside.imageset/BoxInside@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Inside.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "BoxInside.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "BoxInside@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "BoxInside@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Lid.imageset/BoxLid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Lid.imageset/BoxLid.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Lid.imageset/BoxLid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Lid.imageset/BoxLid@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Lid.imageset/BoxLid@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/box/Lid.imageset/BoxLid@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/box/Lid.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "BoxLid.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "BoxLid@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "BoxLid@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/colors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/donut.symbolset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "symbols" : [ 7 | { 8 | "filename" : "donut.svg", 9 | "idiom" : "universal" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-bg.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xBF", 9 | "green" : "0xAE", 10 | "red" : "0x9C" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0.502", 27 | "green" : "0.431", 28 | "red" : "0.306" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "blue-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "blue-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "blue-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-full.imageset/blue-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-full.imageset/blue-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-full.imageset/blue-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-full.imageset/blue-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-full.imageset/blue-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-full.imageset/blue-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "blue-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "blue-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "blue-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-thumb.imageset/blue-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-thumb.imageset/blue-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-thumb.imageset/blue-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-thumb.imageset/blue-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-thumb.imageset/blue-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/blue-thumb.imageset/blue-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "brown-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "brown-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "brown-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-full.imageset/brown-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-full.imageset/brown-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-full.imageset/brown-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-full.imageset/brown-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-full.imageset/brown-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-full.imageset/brown-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "brown-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "brown-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "brown-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-thumb.imageset/brown-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-thumb.imageset/brown-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-thumb.imageset/brown-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-thumb.imageset/brown-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-thumb.imageset/brown-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/brown-thumb.imageset/brown-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "green-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "green-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "green-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-full.imageset/green-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-full.imageset/green-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-full.imageset/green-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-full.imageset/green-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-full.imageset/green-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-full.imageset/green-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "green-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "green-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "green-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-thumb.imageset/green-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-thumb.imageset/green-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-thumb.imageset/green-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-thumb.imageset/green-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-thumb.imageset/green-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/green-thumb.imageset/green-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pink-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "pink-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "pink-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-full.imageset/pink-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-full.imageset/pink-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-full.imageset/pink-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-full.imageset/pink-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-full.imageset/pink-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-full.imageset/pink-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pink-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "pink-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "pink-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-thumb.imageset/pink-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-thumb.imageset/pink-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-thumb.imageset/pink-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-thumb.imageset/pink-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-thumb.imageset/pink-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/pink-thumb.imageset/pink-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "plain-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "plain-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "plain-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-full.imageset/plain-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-full.imageset/plain-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-full.imageset/plain-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-full.imageset/plain-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-full.imageset/plain-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-full.imageset/plain-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "plain-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "plain-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "plain-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-thumb.imageset/plain-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-thumb.imageset/plain-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-thumb.imageset/plain-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-thumb.imageset/plain-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-thumb.imageset/plain-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/plain-thumb.imageset/plain-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "white-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "white-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "white-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-full.imageset/white-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-full.imageset/white-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-full.imageset/white-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-full.imageset/white-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-full.imageset/white-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-full.imageset/white-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "white-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "white-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "white-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-thumb.imageset/white-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-thumb.imageset/white-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-thumb.imageset/white-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-thumb.imageset/white-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-thumb.imageset/white-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/white-thumb.imageset/white-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dough-yellow-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "dough-yellow-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "dough-yellow-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-full.imageset/dough-yellow-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-full.imageset/dough-yellow-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-full.imageset/dough-yellow-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-full.imageset/dough-yellow-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-full.imageset/dough-yellow-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-full.imageset/dough-yellow-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "dough-yellow-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "dough-yellow-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "dough-yellow-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-thumb.imageset/dough-yellow-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-thumb.imageset/dough-yellow-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-thumb.imageset/dough-yellow-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-thumb.imageset/dough-yellow-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-thumb.imageset/dough-yellow-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/dough/yellow-thumb.imageset/dough-yellow-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "blue-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "blue-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "blue-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-full.imageset/blue-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-full.imageset/blue-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-full.imageset/blue-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-full.imageset/blue-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-full.imageset/blue-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-full.imageset/blue-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "blue-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "blue-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "blue-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-thumb.imageset/blue-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-thumb.imageset/blue-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-thumb.imageset/blue-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-thumb.imageset/blue-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-thumb.imageset/blue-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/blue-thumb.imageset/blue-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "brown-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "brown-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "brown-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-full.imageset/brown-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-full.imageset/brown-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-full.imageset/brown-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-full.imageset/brown-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-full.imageset/brown-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-full.imageset/brown-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "brown-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "brown-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "brown-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-thumb.imageset/brown-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-thumb.imageset/brown-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-thumb.imageset/brown-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-thumb.imageset/brown-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-thumb.imageset/brown-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/brown-thumb.imageset/brown-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "green-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "green-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "green-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-full.imageset/green-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-full.imageset/green-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-full.imageset/green-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-full.imageset/green-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-full.imageset/green-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-full.imageset/green-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "green-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "green-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "green-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-thumb.imageset/green-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-thumb.imageset/green-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-thumb.imageset/green-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-thumb.imageset/green-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-thumb.imageset/green-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/green-thumb.imageset/green-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "orange-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "orange-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "orange-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-full.imageset/orange-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-full.imageset/orange-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-full.imageset/orange-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-full.imageset/orange-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-full.imageset/orange-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-full.imageset/orange-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "orange-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "orange-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "orange-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-thumb.imageset/orange-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-thumb.imageset/orange-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-thumb.imageset/orange-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-thumb.imageset/orange-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-thumb.imageset/orange-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/orange-thumb.imageset/orange-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pink-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "pink-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "pink-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-full.imageset/pink-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-full.imageset/pink-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-full.imageset/pink-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-full.imageset/pink-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-full.imageset/pink-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-full.imageset/pink-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "pink-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "pink-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "pink-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-thumb.imageset/pink-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-thumb.imageset/pink-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-thumb.imageset/pink-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-thumb.imageset/pink-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-thumb.imageset/pink-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/pink-thumb.imageset/pink-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "rainbow-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "rainbow-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "rainbow-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-full.imageset/rainbow-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-full.imageset/rainbow-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-full.imageset/rainbow-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-full.imageset/rainbow-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-full.imageset/rainbow-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-full.imageset/rainbow-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "rainbow-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "rainbow-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "rainbow-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-thumb.imageset/rainbow-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-thumb.imageset/rainbow-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-thumb.imageset/rainbow-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-thumb.imageset/rainbow-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-thumb.imageset/rainbow-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/rainbow-thumb.imageset/rainbow-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "yellow-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "yellow-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "yellow-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-full.imageset/yellow-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-full.imageset/yellow-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-full.imageset/yellow-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-full.imageset/yellow-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-full.imageset/yellow-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-full.imageset/yellow-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "yellow-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "yellow-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "yellow-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-thumb.imageset/yellow-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-thumb.imageset/yellow-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-thumb.imageset/yellow-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-thumb.imageset/yellow-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-thumb.imageset/yellow-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/glaze/yellow-thumb.imageset/yellow-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-blue-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-blue-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-blue-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-full.imageset/crisscross-blue-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-full.imageset/crisscross-blue-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-full.imageset/crisscross-blue-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-full.imageset/crisscross-blue-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-full.imageset/crisscross-blue-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-full.imageset/crisscross-blue-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-blue-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-blue-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-blue-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-thumb.imageset/crisscross-blue-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-thumb.imageset/crisscross-blue-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-thumb.imageset/crisscross-blue-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-thumb.imageset/crisscross-blue-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-thumb.imageset/crisscross-blue-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-blue-thumb.imageset/crisscross-blue-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-brown-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-brown-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-brown-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-full.imageset/crisscross-brown-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-full.imageset/crisscross-brown-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-full.imageset/crisscross-brown-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-full.imageset/crisscross-brown-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-full.imageset/crisscross-brown-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-full.imageset/crisscross-brown-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-brown-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-brown-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-brown-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-thumb.imageset/crisscross-brown-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-thumb.imageset/crisscross-brown-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-thumb.imageset/crisscross-brown-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-thumb.imageset/crisscross-brown-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-thumb.imageset/crisscross-brown-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-brown-thumb.imageset/crisscross-brown-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-green-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-green-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-green-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-full.imageset/crisscross-green-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-full.imageset/crisscross-green-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-full.imageset/crisscross-green-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-full.imageset/crisscross-green-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-full.imageset/crisscross-green-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-full.imageset/crisscross-green-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-green-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-green-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-green-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-thumb.imageset/crisscross-green-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-thumb.imageset/crisscross-green-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-thumb.imageset/crisscross-green-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-thumb.imageset/crisscross-green-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-thumb.imageset/crisscross-green-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-green-thumb.imageset/crisscross-green-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-orange-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-orange-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-orange-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-full.imageset/crisscross-orange-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-full.imageset/crisscross-orange-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-full.imageset/crisscross-orange-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-full.imageset/crisscross-orange-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-full.imageset/crisscross-orange-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-full.imageset/crisscross-orange-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-orange-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-orange-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-orange-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-thumb.imageset/crisscross-orange-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-thumb.imageset/crisscross-orange-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-thumb.imageset/crisscross-orange-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-thumb.imageset/crisscross-orange-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-thumb.imageset/crisscross-orange-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-orange-thumb.imageset/crisscross-orange-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-pink-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-pink-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-pink-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-full.imageset/crisscross-pink-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-full.imageset/crisscross-pink-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-full.imageset/crisscross-pink-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-full.imageset/crisscross-pink-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-full.imageset/crisscross-pink-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-full.imageset/crisscross-pink-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-pink-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-pink-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-pink-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-thumb.imageset/crisscross-pink-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-thumb.imageset/crisscross-pink-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-thumb.imageset/crisscross-pink-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-thumb.imageset/crisscross-pink-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-thumb.imageset/crisscross-pink-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-pink-thumb.imageset/crisscross-pink-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-white-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-white-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-white-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-full.imageset/crisscross-white-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-full.imageset/crisscross-white-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-full.imageset/crisscross-white-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-full.imageset/crisscross-white-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-full.imageset/crisscross-white-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-full.imageset/crisscross-white-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-white-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-white-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-white-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-thumb.imageset/crisscross-white-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-thumb.imageset/crisscross-white-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-thumb.imageset/crisscross-white-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-thumb.imageset/crisscross-white-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-thumb.imageset/crisscross-white-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-white-thumb.imageset/crisscross-white-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-yellow-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-yellow-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-yellow-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-full.imageset/crisscross-yellow-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-full.imageset/crisscross-yellow-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-full.imageset/crisscross-yellow-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-full.imageset/crisscross-yellow-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-full.imageset/crisscross-yellow-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-full.imageset/crisscross-yellow-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "crisscross-yellow-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "crisscross-yellow-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "crisscross-yellow-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-thumb.imageset/crisscross-yellow-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-thumb.imageset/crisscross-yellow-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-thumb.imageset/crisscross-yellow-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-thumb.imageset/crisscross-yellow-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-thumb.imageset/crisscross-yellow-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/crisscross-yellow-thumb.imageset/crisscross-yellow-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "powdersugar-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "powdersugar-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "powdersugar-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-full.imageset/powdersugar-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-full.imageset/powdersugar-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-full.imageset/powdersugar-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-full.imageset/powdersugar-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-full.imageset/powdersugar-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-full.imageset/powdersugar-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "powdersugar-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "powdersugar-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "powdersugar-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-thumb.imageset/powdersugar-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-thumb.imageset/powdersugar-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-thumb.imageset/powdersugar-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-thumb.imageset/powdersugar-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-thumb.imageset/powdersugar-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/powdersugar-thumb.imageset/powdersugar-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "sprinkles-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "sprinkles-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "sprinkles-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-full.imageset/sprinkles-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-full.imageset/sprinkles-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-full.imageset/sprinkles-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-full.imageset/sprinkles-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-full.imageset/sprinkles-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-full.imageset/sprinkles-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "sprinkles-stars-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "sprinkles-stars-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "sprinkles-stars-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-full.imageset/sprinkles-stars-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-full.imageset/sprinkles-stars-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-full.imageset/sprinkles-stars-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-full.imageset/sprinkles-stars-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-full.imageset/sprinkles-stars-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-full.imageset/sprinkles-stars-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "sprinkles-stars-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "sprinkles-stars-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "sprinkles-stars-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-thumb.imageset/sprinkles-stars-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-thumb.imageset/sprinkles-stars-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-thumb.imageset/sprinkles-stars-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-thumb.imageset/sprinkles-stars-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-thumb.imageset/sprinkles-stars-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-stars-thumb.imageset/sprinkles-stars-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "sprinkles-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "sprinkles-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "sprinkles-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-thumb.imageset/sprinkles-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-thumb.imageset/sprinkles-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-thumb.imageset/sprinkles-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-thumb.imageset/sprinkles-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-thumb.imageset/sprinkles-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/sprinkles-thumb.imageset/sprinkles-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-blue-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-blue-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-blue-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-full.imageset/straight-blue-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-full.imageset/straight-blue-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-full.imageset/straight-blue-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-full.imageset/straight-blue-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-full.imageset/straight-blue-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-full.imageset/straight-blue-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-blue-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-blue-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-blue-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-thumb.imageset/straight-blue-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-thumb.imageset/straight-blue-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-thumb.imageset/straight-blue-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-thumb.imageset/straight-blue-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-thumb.imageset/straight-blue-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-blue-thumb.imageset/straight-blue-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-brown-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-brown-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-brown-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-full.imageset/straight-brown-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-full.imageset/straight-brown-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-full.imageset/straight-brown-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-full.imageset/straight-brown-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-full.imageset/straight-brown-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-full.imageset/straight-brown-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-brown-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-brown-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-brown-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-thumb.imageset/straight-brown-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-thumb.imageset/straight-brown-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-thumb.imageset/straight-brown-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-thumb.imageset/straight-brown-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-thumb.imageset/straight-brown-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-brown-thumb.imageset/straight-brown-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-green-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-green-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-green-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-full.imageset/straight-green-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-full.imageset/straight-green-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-full.imageset/straight-green-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-full.imageset/straight-green-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-full.imageset/straight-green-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-full.imageset/straight-green-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-green-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-green-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-green-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-thumb.imageset/straight-green-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-thumb.imageset/straight-green-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-thumb.imageset/straight-green-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-thumb.imageset/straight-green-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-thumb.imageset/straight-green-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-green-thumb.imageset/straight-green-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-orange-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-orange-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-orange-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-full.imageset/straight-orange-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-full.imageset/straight-orange-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-full.imageset/straight-orange-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-full.imageset/straight-orange-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-full.imageset/straight-orange-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-full.imageset/straight-orange-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-orange-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-orange-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-orange-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-thumb.imageset/straight-orange-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-thumb.imageset/straight-orange-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-thumb.imageset/straight-orange-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-thumb.imageset/straight-orange-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-thumb.imageset/straight-orange-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-orange-thumb.imageset/straight-orange-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-pink-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-pink-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-pink-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-full.imageset/straight-pink-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-full.imageset/straight-pink-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-full.imageset/straight-pink-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-full.imageset/straight-pink-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-full.imageset/straight-pink-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-full.imageset/straight-pink-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-pink-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-pink-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-pink-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-thumb.imageset/straight-pink-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-thumb.imageset/straight-pink-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-thumb.imageset/straight-pink-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-thumb.imageset/straight-pink-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-thumb.imageset/straight-pink-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-pink-thumb.imageset/straight-pink-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-white-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-white-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-white-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-full.imageset/straight-white-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-full.imageset/straight-white-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-full.imageset/straight-white-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-full.imageset/straight-white-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-full.imageset/straight-white-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-full.imageset/straight-white-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-white-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-white-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-white-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-thumb.imageset/straight-white-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-thumb.imageset/straight-white-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-thumb.imageset/straight-white-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-thumb.imageset/straight-white-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-thumb.imageset/straight-white-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-white-thumb.imageset/straight-white-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-yellow-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-yellow-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-yellow-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-full.imageset/straight-yellow-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-full.imageset/straight-yellow-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-full.imageset/straight-yellow-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-full.imageset/straight-yellow-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-full.imageset/straight-yellow-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-full.imageset/straight-yellow-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "straight-yellow-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "straight-yellow-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "straight-yellow-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-thumb.imageset/straight-yellow-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-thumb.imageset/straight-yellow-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-thumb.imageset/straight-yellow-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-thumb.imageset/straight-yellow-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-thumb.imageset/straight-yellow-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/straight-yellow-thumb.imageset/straight-yellow-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-blue-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-blue-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-blue-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-full.imageset/zigzag-blue-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-full.imageset/zigzag-blue-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-full.imageset/zigzag-blue-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-full.imageset/zigzag-blue-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-full.imageset/zigzag-blue-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-full.imageset/zigzag-blue-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-blue-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-blue-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-blue-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-thumb.imageset/zigzag-blue-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-thumb.imageset/zigzag-blue-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-thumb.imageset/zigzag-blue-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-thumb.imageset/zigzag-blue-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-thumb.imageset/zigzag-blue-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-blue-thumb.imageset/zigzag-blue-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-brown-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-brown-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-brown-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-full.imageset/zigzag-brown-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-full.imageset/zigzag-brown-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-full.imageset/zigzag-brown-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-full.imageset/zigzag-brown-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-full.imageset/zigzag-brown-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-full.imageset/zigzag-brown-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-brown-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-brown-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-brown-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-thumb.imageset/zigzag-brown-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-thumb.imageset/zigzag-brown-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-thumb.imageset/zigzag-brown-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-thumb.imageset/zigzag-brown-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-thumb.imageset/zigzag-brown-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-brown-thumb.imageset/zigzag-brown-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-green-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-green-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-green-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-full.imageset/zigzag-green-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-full.imageset/zigzag-green-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-full.imageset/zigzag-green-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-full.imageset/zigzag-green-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-full.imageset/zigzag-green-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-full.imageset/zigzag-green-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-green-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-green-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-green-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-thumb.imageset/zigzag-green-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-thumb.imageset/zigzag-green-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-thumb.imageset/zigzag-green-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-thumb.imageset/zigzag-green-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-thumb.imageset/zigzag-green-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-green-thumb.imageset/zigzag-green-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-orange-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-orange-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-orange-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-full.imageset/zigzag-orange-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-full.imageset/zigzag-orange-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-full.imageset/zigzag-orange-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-full.imageset/zigzag-orange-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-full.imageset/zigzag-orange-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-full.imageset/zigzag-orange-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-orange-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-orange-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-orange-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-thumb.imageset/zigzag-orange-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-thumb.imageset/zigzag-orange-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-thumb.imageset/zigzag-orange-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-thumb.imageset/zigzag-orange-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-thumb.imageset/zigzag-orange-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-orange-thumb.imageset/zigzag-orange-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-pink-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-pink-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-pink-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-full.imageset/zigzag-pink-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-full.imageset/zigzag-pink-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-full.imageset/zigzag-pink-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-full.imageset/zigzag-pink-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-full.imageset/zigzag-pink-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-full.imageset/zigzag-pink-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-pink-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-pink-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-pink-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-thumb.imageset/zigzag-pink-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-thumb.imageset/zigzag-pink-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-thumb.imageset/zigzag-pink-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-thumb.imageset/zigzag-pink-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-thumb.imageset/zigzag-pink-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-pink-thumb.imageset/zigzag-pink-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-white-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-white-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-white-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-full.imageset/zigzag-white-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-full.imageset/zigzag-white-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-full.imageset/zigzag-white-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-full.imageset/zigzag-white-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-full.imageset/zigzag-white-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-full.imageset/zigzag-white-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-white-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-white-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-white-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-thumb.imageset/zigzag-white-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-thumb.imageset/zigzag-white-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-thumb.imageset/zigzag-white-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-thumb.imageset/zigzag-white-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-thumb.imageset/zigzag-white-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-white-thumb.imageset/zigzag-white-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-full.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-yellow-full.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-yellow-full@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-yellow-full@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-full.imageset/zigzag-yellow-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-full.imageset/zigzag-yellow-full.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-full.imageset/zigzag-yellow-full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-full.imageset/zigzag-yellow-full@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-full.imageset/zigzag-yellow-full@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-full.imageset/zigzag-yellow-full@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-thumb.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "zigzag-yellow-thumb.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "zigzag-yellow-thumb@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "zigzag-yellow-thumb@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-thumb.imageset/zigzag-yellow-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-thumb.imageset/zigzag-yellow-thumb.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-thumb.imageset/zigzag-yellow-thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-thumb.imageset/zigzag-yellow-thumb@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-thumb.imageset/zigzag-yellow-thumb@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/donut/topping/zigzag-yellow-thumb.imageset/zigzag-yellow-thumb@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/flavors/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/flavors/bitter.symbolset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "symbols" : [ 7 | { 8 | "filename" : "bitter.svg", 9 | "idiom" : "universal" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/flavors/salty.symbolset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "symbols" : [ 7 | { 8 | "filename" : "salty.svg", 9 | "idiom" : "universal" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/flavors/sour.symbolset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "symbols" : [ 7 | { 8 | "filename" : "sour.svg", 9 | "idiom" : "universal" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/flavors/spicy.symbolset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "symbols" : [ 7 | { 8 | "filename" : "spicy.svg", 9 | "idiom" : "universal" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/flavors/sweet.symbolset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "symbols" : [ 7 | { 8 | "filename" : "sweet.svg", 9 | "idiom" : "universal" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/Sky End.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xEC", 9 | "green" : "0x97", 10 | "red" : "0x78" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/Sky Start.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xED", 9 | "green" : "0xCF", 10 | "red" : "0x7A" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/Static.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Static Header.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Static Header@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Static Header@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/Static.imageset/Static Header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/Static.imageset/Static Header.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/Static.imageset/Static Header@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/Static.imageset/Static Header@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/Static.imageset/Static Header@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/Static.imageset/Static Header@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/1 Small Clouds.imageset/1_smallClouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/1 Small Clouds.imageset/1_smallClouds.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/1 Small Clouds.imageset/1_smallClouds@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/1 Small Clouds.imageset/1_smallClouds@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/1 Small Clouds.imageset/1_smallClouds@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/1 Small Clouds.imageset/1_smallClouds@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/1 Small Clouds.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "1_smallClouds.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "1_smallClouds@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "1_smallClouds@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/2 Medium Clouds.imageset/2_mediumClouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/2 Medium Clouds.imageset/2_mediumClouds.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/2 Medium Clouds.imageset/2_mediumClouds@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/2 Medium Clouds.imageset/2_mediumClouds@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/2 Medium Clouds.imageset/2_mediumClouds@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/2 Medium Clouds.imageset/2_mediumClouds@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/2 Medium Clouds.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "2_mediumClouds.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "2_mediumClouds@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "2_mediumClouds@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/3 Mountains.imageset/3_mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/3 Mountains.imageset/3_mountains.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/3 Mountains.imageset/3_mountains@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/3 Mountains.imageset/3_mountains@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/3 Mountains.imageset/3_mountains@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/3 Mountains.imageset/3_mountains@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/3 Mountains.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "3_mountains.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "3_mountains@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "3_mountains@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/4 Big Clouds.imageset/4_bigClouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/4 Big Clouds.imageset/4_bigClouds.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/4 Big Clouds.imageset/4_bigClouds@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/4 Big Clouds.imageset/4_bigClouds@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/4 Big Clouds.imageset/4_bigClouds@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/4 Big Clouds.imageset/4_bigClouds@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/4 Big Clouds.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "4_bigClouds.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "4_bigClouds@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "4_bigClouds@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/5 Ocean.imageset/5cean.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/5 Ocean.imageset/5cean.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/5 Ocean.imageset/5cean@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/5 Ocean.imageset/5cean@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/5 Ocean.imageset/5cean@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/5 Ocean.imageset/5cean@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/5 Ocean.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "5cean.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "5cean@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "5cean@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/6 Balloons.imageset/6_balloons&ships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/6 Balloons.imageset/6_balloons&ships.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/6 Balloons.imageset/6_balloons&ships@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/6 Balloons.imageset/6_balloons&ships@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/6 Balloons.imageset/6_balloons&ships@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/6 Balloons.imageset/6_balloons&ships@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/6 Balloons.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "6_balloons&ships.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "6_balloons&ships@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "6_balloons&ships@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/7 Trees.imageset/7_treeBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/7 Trees.imageset/7_treeBackground.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/7 Trees.imageset/7_treeBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/7 Trees.imageset/7_treeBackground@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/7 Trees.imageset/7_treeBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/7 Trees.imageset/7_treeBackground@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/7 Trees.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "7_treeBackground.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "7_treeBackground@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "7_treeBackground@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/8 Road.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Road.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Road@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Road@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/8 Road.imageset/Road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/8 Road.imageset/Road.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/8 Road.imageset/Road@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/8 Road.imageset/Road@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/8 Road.imageset/Road@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/8 Road.imageset/Road@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/9 Foreground.imageset/9_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/9 Foreground.imageset/9_foreground.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/9 Foreground.imageset/9_foreground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/9 Foreground.imageset/9_foreground@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/9 Foreground.imageset/9_foreground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/layer/9 Foreground.imageset/9_foreground@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/9 Foreground.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "9_foreground.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "9_foreground@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "9_foreground@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/layer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | }, 6 | "properties" : { 7 | "provides-namespace" : true 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "foodTruck_frame1.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "foodTruck_frame1@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "foodTruck_frame1@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 1.imageset/foodTruck_frame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 1.imageset/foodTruck_frame1.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 1.imageset/foodTruck_frame1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 1.imageset/foodTruck_frame1@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 1.imageset/foodTruck_frame1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 1.imageset/foodTruck_frame1@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "foodTruck_frame2.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "foodTruck_frame2@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "foodTruck_frame2@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 2.imageset/foodTruck_frame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 2.imageset/foodTruck_frame2.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 2.imageset/foodTruck_frame2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 2.imageset/foodTruck_frame2@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 2.imageset/foodTruck_frame2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 2.imageset/foodTruck_frame2@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "foodTruck_frame3.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "foodTruck_frame3@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "foodTruck_frame3@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 3.imageset/foodTruck_frame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 3.imageset/foodTruck_frame3.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 3.imageset/foodTruck_frame3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 3.imageset/foodTruck_frame3@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 3.imageset/foodTruck_frame3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 3.imageset/foodTruck_frame3@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "foodTruck_frame4.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "foodTruck_frame4@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "foodTruck_frame4@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 4.imageset/foodTruck_frame4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 4.imageset/foodTruck_frame4.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 4.imageset/foodTruck_frame4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 4.imageset/foodTruck_frame4@2x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 4.imageset/foodTruck_frame4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/FoodTruckKit/Sources/Assets.xcassets/header/truck/Frame 4.imageset/foodTruck_frame4@3x.png -------------------------------------------------------------------------------- /FoodTruckKit/Sources/City/ParkingSpot.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | The parking spot model object. 6 | */ 7 | 8 | import Foundation 9 | import CoreLocation 10 | 11 | public struct ParkingSpot: Identifiable, Hashable { 12 | public var id: String { name } 13 | public var name: String 14 | public var location: CLLocation 15 | public var cameraDistance: Double = 1000 16 | } 17 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Donut/Ingredients/Ingredient.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | The ingredient model object. 6 | */ 7 | 8 | import SwiftUI 9 | 10 | public protocol Ingredient: Identifiable, Hashable { 11 | var id: String { get } 12 | var name: String { get } 13 | var flavors: FlavorProfile { get } 14 | var imageAssetName: String { get } 15 | static var imageAssetPrefix: String { get } 16 | } 17 | 18 | public extension Ingredient { 19 | var id: String { "\(Self.imageAssetPrefix)/\(name)" } 20 | } 21 | 22 | public extension Ingredient { 23 | func image(thumbnail: Bool) -> Image { 24 | Image("\(Self.imageAssetPrefix)/\(imageAssetName)-\(thumbnail ? "thumb" : "full")", bundle: .module) 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/General/TaskSeconds.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | Helper functions to calculate time. 6 | */ 7 | 8 | import Foundation 9 | 10 | public extension UInt64 { 11 | static func secondsToNanoseconds(_ seconds: Double) -> UInt64 { 12 | UInt64(seconds * 1_000_000_000) 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /FoodTruckKit/Sources/Truck.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | The Truck model. 6 | */ 7 | 8 | import Foundation 9 | 10 | public struct Truck { 11 | public var city: City = .cupertino 12 | public var location: ParkingSpot = City.cupertino.parkingSpots[0] 13 | } 14 | 15 | public extension Truck { 16 | static var preview = Truck() 17 | } 18 | -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "platform" : "universal", 6 | "reference" : "systemIndigoColor" 7 | }, 8 | "idiom" : "universal" 9 | } 10 | ], 11 | "info" : { 12 | "author" : "xcode", 13 | "version" : 1 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/AccentColorDimmed.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0x98", 9 | "green" : "0x3D", 10 | "red" : "0x3E" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/IslandCompactIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Food Truck Compact@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Food Truck Compact@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Food Truck Compact@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/IslandCompactIcon.imageset/Food Truck Compact@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/Widgets/Assets.xcassets/IslandCompactIcon.imageset/Food Truck Compact@1x.png -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/IslandCompactIcon.imageset/Food Truck Compact@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/Widgets/Assets.xcassets/IslandCompactIcon.imageset/Food Truck Compact@2x.png -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/IslandCompactIcon.imageset/Food Truck Compact@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/Widgets/Assets.xcassets/IslandCompactIcon.imageset/Food Truck Compact@3x.png -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/IslandExpandedIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "filename" : "Food Truck Expanded@1x.png", 5 | "idiom" : "universal", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "filename" : "Food Truck Expanded@2x.png", 10 | "idiom" : "universal", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "filename" : "Food Truck Expanded@3x.png", 15 | "idiom" : "universal", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "author" : "xcode", 21 | "version" : 1 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/IslandExpandedIcon.imageset/Food Truck Expanded@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/Widgets/Assets.xcassets/IslandExpandedIcon.imageset/Food Truck Expanded@1x.png -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/IslandExpandedIcon.imageset/Food Truck Expanded@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/Widgets/Assets.xcassets/IslandExpandedIcon.imageset/Food Truck Expanded@2x.png -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/IslandExpandedIcon.imageset/Food Truck Expanded@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Swift-CowBox/Swift-CowBox-Sample/cf000f8633e02002e2e524ce9337291712e2ca4d/Widgets/Assets.xcassets/IslandExpandedIcon.imageset/Food Truck Expanded@3x.png -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/LightIndigo.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xFF", 9 | "green" : "0xBA", 10 | "red" : "0xB9" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | } 15 | ], 16 | "info" : { 17 | "author" : "xcode", 18 | "version" : 1 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/LiveActivityBackground.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "color" : { 5 | "color-space" : "srgb", 6 | "components" : { 7 | "alpha" : "1.000", 8 | "blue" : "0xEF", 9 | "green" : "0xC4", 10 | "red" : "0xC3" 11 | } 12 | }, 13 | "idiom" : "universal" 14 | }, 15 | { 16 | "appearances" : [ 17 | { 18 | "appearance" : "luminosity", 19 | "value" : "dark" 20 | } 21 | ], 22 | "color" : { 23 | "color-space" : "srgb", 24 | "components" : { 25 | "alpha" : "1.000", 26 | "blue" : "0x98", 27 | "green" : "0x3D", 28 | "red" : "0x3E" 29 | } 30 | }, 31 | "idiom" : "universal" 32 | } 33 | ], 34 | "info" : { 35 | "author" : "xcode", 36 | "version" : 1 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /Widgets/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Widgets/Config.xcconfig: -------------------------------------------------------------------------------- 1 | 2 | // Configuration settings file format documentation can be found at: 3 | // https://help.apple.com/xcode/#/dev745c5c974 4 | 5 | -------------------------------------------------------------------------------- /Widgets/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | NSExtension 6 | 7 | NSExtensionPointIdentifier 8 | com.apple.widgetkit-extension 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Widgets/TruckActivityAttributes.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | Defines the live activity attributes. 6 | */ 7 | 8 | #if canImport(ActivityKit) 9 | import Foundation 10 | import ActivityKit 11 | import FoodTruckKit 12 | 13 | struct TruckActivityAttributes: ActivityAttributes { 14 | public typealias MyActivityStatus = ContentState 15 | 16 | public struct ContentState: Codable, Hashable { 17 | var timerRange: ClosedRange 18 | } 19 | 20 | var orderID: String 21 | var order: [Donut.ID] 22 | var sales: [Donut.ID: Int] 23 | var activityName: String 24 | } 25 | #endif 26 | -------------------------------------------------------------------------------- /Widgets/WidgetColors.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | The accents in the Widget. 6 | */ 7 | 8 | import SwiftUI 9 | 10 | extension Color { 11 | static let widgetAccent = Color("AccentColor") 12 | static let widgetAccentDimmed = Color("AccentColorDimmed") 13 | } 14 | 15 | extension Gradient { 16 | static let widgetAccent = Gradient(colors: [.widgetAccentDimmed, .widgetAccent]) 17 | } 18 | -------------------------------------------------------------------------------- /Widgets/Widgets.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /Widgets/Widgets.swift: -------------------------------------------------------------------------------- 1 | /* 2 | See the LICENSE.txt file for this sample’s licensing information. 3 | 4 | Abstract: 5 | The Widget entry point. 6 | */ 7 | 8 | import WidgetKit 9 | import SwiftUI 10 | 11 | @main 12 | struct Widgets: WidgetBundle { 13 | var body: some Widget { 14 | // MARK: - Live Activity Widgets 15 | #if canImport(ActivityKit) 16 | TruckActivityWidget() 17 | #endif 18 | 19 | // MARK: - Accessory Widgets 20 | #if os(iOS) || os(watchOS) 21 | OrdersWidget() 22 | ParkingSpotAccessory() 23 | #endif 24 | 25 | // MARK: - Widgets 26 | #if os(iOS) || os(macOS) 27 | DailyDonutWidget() 28 | #endif 29 | } 30 | } 31 | 32 | -------------------------------------------------------------------------------- /Widgets/macOS.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | 8 | 9 | --------------------------------------------------------------------------------