├── .gitignore ├── LICENSE ├── README.md ├── WidgetConfTest.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ ├── WidgetConfTest.xcscheme │ └── WidgetyExtension.xcscheme ├── WidgetConfTest ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── WidgetConfTest.entitlements ├── Widgety ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── WidgetBackground.colorset │ │ └── Contents.json ├── Info.plist ├── Widgety.entitlements ├── Widgety.intentdefinition └── Widgety.swift └── WidgetyIntents ├── Info.plist ├── IntentHandler.swift └── WidgetyIntents.entitlements /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/README.md -------------------------------------------------------------------------------- /WidgetConfTest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WidgetConfTest.xcodeproj/xcshareddata/xcschemes/WidgetConfTest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest.xcodeproj/xcshareddata/xcschemes/WidgetConfTest.xcscheme -------------------------------------------------------------------------------- /WidgetConfTest.xcodeproj/xcshareddata/xcschemes/WidgetyExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest.xcodeproj/xcshareddata/xcschemes/WidgetyExtension.xcscheme -------------------------------------------------------------------------------- /WidgetConfTest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest/AppDelegate.swift -------------------------------------------------------------------------------- /WidgetConfTest/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WidgetConfTest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WidgetConfTest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WidgetConfTest/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /WidgetConfTest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest/Info.plist -------------------------------------------------------------------------------- /WidgetConfTest/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest/ViewController.swift -------------------------------------------------------------------------------- /WidgetConfTest/WidgetConfTest.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetConfTest/WidgetConfTest.entitlements -------------------------------------------------------------------------------- /Widgety/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/Widgety/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Widgety/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/Widgety/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Widgety/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/Widgety/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Widgety/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/Widgety/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Widgety/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/Widgety/Info.plist -------------------------------------------------------------------------------- /Widgety/Widgety.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/Widgety/Widgety.entitlements -------------------------------------------------------------------------------- /Widgety/Widgety.intentdefinition: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/Widgety/Widgety.intentdefinition -------------------------------------------------------------------------------- /Widgety/Widgety.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/Widgety/Widgety.swift -------------------------------------------------------------------------------- /WidgetyIntents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetyIntents/Info.plist -------------------------------------------------------------------------------- /WidgetyIntents/IntentHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetyIntents/IntentHandler.swift -------------------------------------------------------------------------------- /WidgetyIntents/WidgetyIntents.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insidegui/ConfigurableWidgetDemo/HEAD/WidgetyIntents/WidgetyIntents.entitlements --------------------------------------------------------------------------------