├── DashboardUI.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── cwiles.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── DashboardUI ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── BottomGradient.colorset │ │ └── Contents.json │ ├── CakeStand.imageset │ │ ├── Contents.json │ │ └── cake-stand.png │ ├── Contents.json │ ├── Cookware.imageset │ │ ├── Contents.json │ │ └── cookware.png │ ├── Couch.imageset │ │ ├── Contents.json │ │ └── couch.png │ ├── DarkBlue.colorset │ │ └── Contents.json │ ├── LightBlue.colorset │ │ └── Contents.json │ ├── Orange.colorset │ │ └── Contents.json │ ├── OutdoorLight.imageset │ │ ├── Contents.json │ │ └── outdoor-light.png │ ├── Person1.imageset │ │ ├── Contents.json │ │ └── image-250nw-662171107.jpg │ ├── Person2.imageset │ │ ├── Contents.json │ │ └── image-250nw-613759379.jpg │ ├── Person3.imageset │ │ ├── Contents.json │ │ └── image-250nw-640011838.jpg │ ├── Profile.imageset │ │ ├── 1zUn5pXp_400x400.jpg │ │ └── Contents.json │ └── TopGradient.colorset │ │ └── Contents.json ├── BackgroundView.swift ├── Base.lproj │ └── LaunchScreen.storyboard ├── BuyerRowView.swift ├── ContentView.swift ├── DashboardView.swift ├── DetailProductBuyerView.swift ├── DetailView.swift ├── Extensions.swift ├── FilterMenuView.swift ├── HandleBarView.swift ├── Helpers.swift ├── Info.plist ├── LineView.swift ├── MenuView.swift ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── ProductView.swift ├── SceneDelegate.swift └── StatsView.swift ├── README.md └── Screenshots ├── dashboard-closed.png └── dashboard-open.png /DashboardUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DashboardUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DashboardUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DashboardUI.xcodeproj/xcuserdata/cwiles.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI.xcodeproj/xcuserdata/cwiles.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DashboardUI.xcodeproj/xcuserdata/cwiles.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI.xcodeproj/xcuserdata/cwiles.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DashboardUI/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/AppDelegate.swift -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/BottomGradient.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/BottomGradient.colorset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/CakeStand.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/CakeStand.imageset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/CakeStand.imageset/cake-stand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/CakeStand.imageset/cake-stand.png -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Cookware.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Cookware.imageset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Cookware.imageset/cookware.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Cookware.imageset/cookware.png -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Couch.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Couch.imageset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Couch.imageset/couch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Couch.imageset/couch.png -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/DarkBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/DarkBlue.colorset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/LightBlue.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/LightBlue.colorset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Orange.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Orange.colorset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/OutdoorLight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/OutdoorLight.imageset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/OutdoorLight.imageset/outdoor-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/OutdoorLight.imageset/outdoor-light.png -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Person1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Person1.imageset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Person1.imageset/image-250nw-662171107.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Person1.imageset/image-250nw-662171107.jpg -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Person2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Person2.imageset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Person2.imageset/image-250nw-613759379.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Person2.imageset/image-250nw-613759379.jpg -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Person3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Person3.imageset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Person3.imageset/image-250nw-640011838.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Person3.imageset/image-250nw-640011838.jpg -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Profile.imageset/1zUn5pXp_400x400.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Profile.imageset/1zUn5pXp_400x400.jpg -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/Profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/Profile.imageset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/Assets.xcassets/TopGradient.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Assets.xcassets/TopGradient.colorset/Contents.json -------------------------------------------------------------------------------- /DashboardUI/BackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/BackgroundView.swift -------------------------------------------------------------------------------- /DashboardUI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DashboardUI/BuyerRowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/BuyerRowView.swift -------------------------------------------------------------------------------- /DashboardUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/ContentView.swift -------------------------------------------------------------------------------- /DashboardUI/DashboardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/DashboardView.swift -------------------------------------------------------------------------------- /DashboardUI/DetailProductBuyerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/DetailProductBuyerView.swift -------------------------------------------------------------------------------- /DashboardUI/DetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/DetailView.swift -------------------------------------------------------------------------------- /DashboardUI/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Extensions.swift -------------------------------------------------------------------------------- /DashboardUI/FilterMenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/FilterMenuView.swift -------------------------------------------------------------------------------- /DashboardUI/HandleBarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/HandleBarView.swift -------------------------------------------------------------------------------- /DashboardUI/Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Helpers.swift -------------------------------------------------------------------------------- /DashboardUI/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Info.plist -------------------------------------------------------------------------------- /DashboardUI/LineView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/LineView.swift -------------------------------------------------------------------------------- /DashboardUI/MenuView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/MenuView.swift -------------------------------------------------------------------------------- /DashboardUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DashboardUI/ProductView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/ProductView.swift -------------------------------------------------------------------------------- /DashboardUI/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/SceneDelegate.swift -------------------------------------------------------------------------------- /DashboardUI/StatsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/DashboardUI/StatsView.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/dashboard-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/Screenshots/dashboard-closed.png -------------------------------------------------------------------------------- /Screenshots/dashboard-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kwylez/DashboardUI/HEAD/Screenshots/dashboard-open.png --------------------------------------------------------------------------------