├── LampUI ├── LampUI.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── shreyasvilaschandrabhike.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── shreyasvilaschandrabhike.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist └── LampUI │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── basebg.colorset │ │ └── Contents.json │ ├── lamp.imageset │ │ ├── Contents.json │ │ └── lamp.png │ ├── light.imageset │ │ ├── Contents.json │ │ └── light.png │ └── switch.colorset │ │ └── Contents.json │ ├── ContentView.swift │ ├── LampUIApp.swift │ └── Preview Content │ └── Preview Assets.xcassets │ └── Contents.json └── README.md /LampUI/LampUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LampUI/LampUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LampUI/LampUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /LampUI/LampUI.xcodeproj/project.xcworkspace/xcuserdata/shreyasvilaschandrabhike.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI.xcodeproj/project.xcworkspace/xcuserdata/shreyasvilaschandrabhike.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /LampUI/LampUI.xcodeproj/xcuserdata/shreyasvilaschandrabhike.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI.xcodeproj/xcuserdata/shreyasvilaschandrabhike.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/basebg.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/basebg.colorset/Contents.json -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/lamp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/lamp.imageset/Contents.json -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/lamp.imageset/lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/lamp.imageset/lamp.png -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/light.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/light.imageset/Contents.json -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/light.imageset/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/light.imageset/light.png -------------------------------------------------------------------------------- /LampUI/LampUI/Assets.xcassets/switch.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Assets.xcassets/switch.colorset/Contents.json -------------------------------------------------------------------------------- /LampUI/LampUI/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/ContentView.swift -------------------------------------------------------------------------------- /LampUI/LampUI/LampUIApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/LampUIApp.swift -------------------------------------------------------------------------------- /LampUI/LampUI/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/LampUI/LampUI/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAppWizard/LampUISwiftUI/HEAD/README.md --------------------------------------------------------------------------------