├── AppWidget ├── AppWidget.swift ├── AppWidgetBundle.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── WidgetBackground.colorset │ │ └── Contents.json └── Info.plist ├── AppWidgetExtension.entitlements ├── MacWidget ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── WidgetBackground.colorset │ │ └── Contents.json ├── Info.plist ├── MacWidget.entitlements ├── MacWidget.swift └── MacWidgetBundle.swift ├── README.md ├── WidgetIntermediateAnimation.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── xcshareddata │ └── xcschemes │ │ ├── AppWidgetExtension.xcscheme │ │ └── WidgetIntermediateAnimation.xcscheme └── xcuserdata │ ├── chaos.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ └── xcschememanagement.plist │ └── juniperphoton.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── WidgetIntermediateAnimation ├── AppModelContainer.swift ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Item.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── WidgetIntermediateAnimation.entitlements ├── WidgetIntermediateAnimationApp.swift └── WidgetShared.swift /AppWidget/AppWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/AppWidget/AppWidget.swift -------------------------------------------------------------------------------- /AppWidget/AppWidgetBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/AppWidget/AppWidgetBundle.swift -------------------------------------------------------------------------------- /AppWidget/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/AppWidget/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /AppWidget/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/AppWidget/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppWidget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/AppWidget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AppWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/AppWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /AppWidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/AppWidget/Info.plist -------------------------------------------------------------------------------- /AppWidgetExtension.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/AppWidgetExtension.entitlements -------------------------------------------------------------------------------- /MacWidget/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/MacWidget/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /MacWidget/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/MacWidget/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MacWidget/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/MacWidget/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /MacWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/MacWidget/Assets.xcassets/WidgetBackground.colorset/Contents.json -------------------------------------------------------------------------------- /MacWidget/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/MacWidget/Info.plist -------------------------------------------------------------------------------- /MacWidget/MacWidget.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/MacWidget/MacWidget.entitlements -------------------------------------------------------------------------------- /MacWidget/MacWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/MacWidget/MacWidget.swift -------------------------------------------------------------------------------- /MacWidget/MacWidgetBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/MacWidget/MacWidgetBundle.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/README.md -------------------------------------------------------------------------------- /WidgetIntermediateAnimation.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WidgetIntermediateAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WidgetIntermediateAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /WidgetIntermediateAnimation.xcodeproj/xcshareddata/xcschemes/AppWidgetExtension.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation.xcodeproj/xcshareddata/xcschemes/AppWidgetExtension.xcscheme -------------------------------------------------------------------------------- /WidgetIntermediateAnimation.xcodeproj/xcshareddata/xcschemes/WidgetIntermediateAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation.xcodeproj/xcshareddata/xcschemes/WidgetIntermediateAnimation.xcscheme -------------------------------------------------------------------------------- /WidgetIntermediateAnimation.xcodeproj/xcuserdata/chaos.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation.xcodeproj/xcuserdata/chaos.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WidgetIntermediateAnimation.xcodeproj/xcuserdata/chaos.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation.xcodeproj/xcuserdata/chaos.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WidgetIntermediateAnimation.xcodeproj/xcuserdata/juniperphoton.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation.xcodeproj/xcuserdata/juniperphoton.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/AppModelContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/AppModelContainer.swift -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/ContentView.swift -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/Item.swift -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/WidgetIntermediateAnimation.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/WidgetIntermediateAnimation.entitlements -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/WidgetIntermediateAnimationApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/WidgetIntermediateAnimationApp.swift -------------------------------------------------------------------------------- /WidgetIntermediateAnimation/WidgetShared.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JuniperPhoton/Widget-Intermediate-Animation/HEAD/WidgetIntermediateAnimation/WidgetShared.swift --------------------------------------------------------------------------------