├── .gitignore ├── DDAnimatedSwitch.podspec ├── DDAnimatedSwitch.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── DDAnimatedSwitch.xcscheme ├── DDAnimatedSwitch ├── DDAnimatedSwitch.h ├── DDAnimatedSwitch.swift ├── DDAnimatedThumbView.swift ├── DDImageSwitch.swift ├── DDLabelSwitch.swift ├── DDSwitch.swift └── Info.plist ├── Example ├── DDAnimatedSwitchExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── DDAnimatedSwitchExample.xcscheme └── DDAnimatedSwitchExample │ ├── Animations │ ├── BirdAnimation.plist │ ├── BoyAnimation.plist │ ├── CircleAnimation.plist │ ├── CityAnimation.plist │ ├── DayNightAnimation.plist │ ├── EarthAnimation.plist │ ├── ForestAnimation.plist │ ├── ManJumpAnimation.plist │ ├── MoonSunAnimation.plist │ ├── SmallBirdAnimation.plist │ ├── SmileAnimation.plist │ ├── SpaceBackAnimation.plist │ ├── SunMoonAnimation.plist │ ├── TickAnimation.plist │ ├── VolumeAnimation.plist │ └── YesNoAnimation.plist │ ├── AppDelegate.swift │ ├── Assets.xcassets │ ├── Animations │ │ ├── Bird │ │ │ ├── Bird_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_00_delay-0.01s.png │ │ │ ├── Bird_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_01_delay-0.01s.png │ │ │ ├── Bird_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_02_delay-0.01s.png │ │ │ ├── Bird_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_03_delay-0.01s.png │ │ │ ├── Bird_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_04_delay-0.01s.png │ │ │ ├── Bird_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_05_delay-0.01s.png │ │ │ ├── Bird_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_06_delay-0.01s.png │ │ │ ├── Bird_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_07_delay-0.01s.png │ │ │ ├── Bird_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_08_delay-0.01s.png │ │ │ ├── Bird_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_09_delay-0.01s.png │ │ │ ├── Bird_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_10_delay-0.01s.png │ │ │ ├── Bird_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_11_delay-0.01s.png │ │ │ ├── Bird_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_12_delay-0.01s.png │ │ │ ├── Bird_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_13_delay-0.01s.png │ │ │ ├── Bird_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_14_delay-0.01s.png │ │ │ ├── Bird_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_15_delay-0.01s.png │ │ │ ├── Bird_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_16_delay-0.01s.png │ │ │ ├── Bird_18.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── frame_17_delay-0.01s.png │ │ │ └── Contents.json │ │ ├── Boy │ │ │ ├── Boy_00.imageset │ │ │ │ ├── Boy_00.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_01.imageset │ │ │ │ ├── Boy_01.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_02.imageset │ │ │ │ ├── Boy_02.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_03.imageset │ │ │ │ ├── Boy_03.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_04.imageset │ │ │ │ ├── Boy_04.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_05.imageset │ │ │ │ ├── Boy_05.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_06.imageset │ │ │ │ ├── Boy_06.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_07.imageset │ │ │ │ ├── Boy_07.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_08.imageset │ │ │ │ ├── Boy_08.png │ │ │ │ └── Contents.json │ │ │ ├── Boy_09.imageset │ │ │ │ ├── Boy_09.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Circle │ │ │ ├── Circle_01.imageset │ │ │ │ ├── Circle_01.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_02.imageset │ │ │ │ ├── Circle_02.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_03.imageset │ │ │ │ ├── Circle_03.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_04.imageset │ │ │ │ ├── Circle_04.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_05.imageset │ │ │ │ ├── Circle_05.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_06.imageset │ │ │ │ ├── Circle_06.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_07.imageset │ │ │ │ ├── Circle_07.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_08.imageset │ │ │ │ ├── Circle_08.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_09.imageset │ │ │ │ ├── Circle_09.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_10.imageset │ │ │ │ ├── Circle_10.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_11.imageset │ │ │ │ ├── Circle_11.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_12.imageset │ │ │ │ ├── Circle_12.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_13.imageset │ │ │ │ ├── Circle_13.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_14.imageset │ │ │ │ ├── Circle_14.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_15.imageset │ │ │ │ ├── Circle_15.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_16.imageset │ │ │ │ ├── Circle_16.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_17.imageset │ │ │ │ ├── Circle_17.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_18.imageset │ │ │ │ ├── Circle_18.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_19.imageset │ │ │ │ ├── Circle_19.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_20.imageset │ │ │ │ ├── Circle_20.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_21.imageset │ │ │ │ ├── Circle_21.png │ │ │ │ └── Contents.json │ │ │ ├── Circle_22.imageset │ │ │ │ ├── Circle_22.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── City │ │ │ ├── City_01.imageset │ │ │ │ ├── City_01.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_02.imageset │ │ │ │ ├── City_02.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_03.imageset │ │ │ │ ├── City_03.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_04.imageset │ │ │ │ ├── City_04.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_05.imageset │ │ │ │ ├── City_05.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_06.imageset │ │ │ │ ├── City_06.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_07.imageset │ │ │ │ ├── City_07.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_08.imageset │ │ │ │ ├── City_08.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_09.imageset │ │ │ │ ├── City_09.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_10.imageset │ │ │ │ ├── City_10.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_11.imageset │ │ │ │ ├── City_11.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_12.imageset │ │ │ │ ├── City_12.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_13.imageset │ │ │ │ ├── City_13.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_14.imageset │ │ │ │ ├── City_14.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_15.imageset │ │ │ │ ├── City_15.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_16.imageset │ │ │ │ ├── City_16.jpg │ │ │ │ └── Contents.json │ │ │ ├── City_17.imageset │ │ │ │ ├── City_17.jpg │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── DayNight │ │ │ ├── Contents.json │ │ │ ├── DayNight_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_01.jpg │ │ │ ├── DayNight_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_02.jpg │ │ │ ├── DayNight_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_03.jpg │ │ │ ├── DayNight_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_04.jpg │ │ │ ├── DayNight_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_05.jpg │ │ │ ├── DayNight_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_06.jpg │ │ │ ├── DayNight_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_07.jpg │ │ │ ├── DayNight_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_08.jpg │ │ │ ├── DayNight_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_09.jpg │ │ │ ├── DayNight_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_10.jpg │ │ │ ├── DayNight_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_11.jpg │ │ │ ├── DayNight_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_12.jpg │ │ │ ├── DayNight_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_13.jpg │ │ │ ├── DayNight_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_14.jpg │ │ │ ├── DayNight_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_15.jpg │ │ │ ├── DayNight_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_16.jpg │ │ │ ├── DayNight_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_17.jpg │ │ │ ├── DayNight_18.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_18.jpg │ │ │ ├── DayNight_19.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_19.jpg │ │ │ ├── DayNight_21.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_21.jpg │ │ │ ├── DayNight_22.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_22.jpg │ │ │ ├── DayNight_23.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_23.jpg │ │ │ ├── DayNight_24.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_24.jpg │ │ │ ├── DayNight_25.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_25.jpg │ │ │ ├── DayNight_26.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_26.jpg │ │ │ ├── DayNight_27.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_27.jpg │ │ │ ├── DayNight_28.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_28.jpg │ │ │ ├── DayNight_29.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_29.jpg │ │ │ ├── DayNight_30.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_30.jpg │ │ │ ├── DayNight_31.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_31.jpg │ │ │ ├── DayNight_32.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_32.jpg │ │ │ ├── DayNight_33.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_33.jpg │ │ │ ├── DayNight_34.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_34.jpg │ │ │ ├── DayNight_35.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_35.jpg │ │ │ ├── DayNight_36.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_36.jpg │ │ │ ├── DayNight_37.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_37.jpg │ │ │ ├── DayNight_38.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_38.jpg │ │ │ ├── DayNight_39.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_39.jpg │ │ │ ├── DayNight_40.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_40.jpg │ │ │ ├── DayNight_41.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_41.jpg │ │ │ ├── DayNight_42.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_42.jpg │ │ │ ├── DayNight_43.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_43.jpg │ │ │ ├── DayNight_44.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_44.jpg │ │ │ └── DayNight_45.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── DayNight_45.jpg │ │ ├── Earth │ │ │ ├── Contents.json │ │ │ ├── Earth_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_01.png │ │ │ ├── Earth_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_02.png │ │ │ ├── Earth_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_03.png │ │ │ ├── Earth_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_04.png │ │ │ ├── Earth_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_05.png │ │ │ ├── Earth_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_06.png │ │ │ ├── Earth_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_07.png │ │ │ ├── Earth_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_08.png │ │ │ ├── Earth_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_09.png │ │ │ ├── Earth_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_10.png │ │ │ ├── Earth_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_11.png │ │ │ ├── Earth_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_12.png │ │ │ ├── Earth_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_13.png │ │ │ ├── Earth_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_14.png │ │ │ ├── Earth_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_15.png │ │ │ ├── Earth_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_16.png │ │ │ ├── Earth_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_17.png │ │ │ └── Earth_18.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Earth_18.png │ │ ├── Forest │ │ │ ├── Contents.json │ │ │ ├── Forest_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_01.jpg │ │ │ ├── Forest_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_02.jpg │ │ │ ├── Forest_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_03.jpg │ │ │ ├── Forest_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_04.jpg │ │ │ ├── Forest_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_05.jpg │ │ │ ├── Forest_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_06.jpg │ │ │ ├── Forest_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_07.jpg │ │ │ ├── Forest_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_08.jpg │ │ │ ├── Forest_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_09.jpg │ │ │ ├── Forest_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_10.jpg │ │ │ ├── Forest_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_11.jpg │ │ │ ├── Forest_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_12.jpg │ │ │ ├── Forest_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_13.jpg │ │ │ ├── Forest_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_14.jpg │ │ │ └── Forest_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Forest_15.jpg │ │ ├── MoonSun │ │ │ ├── Contents.json │ │ │ ├── MoonSun_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_01.png │ │ │ ├── MoonSun_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_02.png │ │ │ ├── MoonSun_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_01.png │ │ │ ├── MoonSun_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_02.png │ │ │ ├── MoonSun_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_03.png │ │ │ ├── MoonSun_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_04.png │ │ │ ├── MoonSun_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_05.png │ │ │ ├── MoonSun_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_06.png │ │ │ ├── MoonSun_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_07.png │ │ │ ├── MoonSun_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_08.png │ │ │ ├── MoonSun_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_09.png │ │ │ ├── MoonSun_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_10.png │ │ │ ├── MoonSun_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_11.png │ │ │ ├── MoonSun_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_12.png │ │ │ ├── MoonSun_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_13.png │ │ │ ├── MoonSun_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_14.png │ │ │ └── MoonSun_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoonSun_15.png │ │ ├── SmallBird │ │ │ ├── Contents.json │ │ │ ├── SmallBird_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_01.png │ │ │ ├── SmallBird_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_02.png │ │ │ ├── SmallBird_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_03.png │ │ │ ├── SmallBird_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_04.png │ │ │ ├── SmallBird_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_05.png │ │ │ ├── SmallBird_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_06.png │ │ │ ├── SmallBird_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_07.png │ │ │ ├── SmallBird_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_08.png │ │ │ ├── SmallBird_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_09.png │ │ │ ├── SmallBird_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_10.png │ │ │ ├── SmallBird_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_11.png │ │ │ ├── SmallBird_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_12.png │ │ │ ├── SmallBird_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_13.png │ │ │ ├── SmallBird_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_14.png │ │ │ └── SmallBird_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SmallBird_15.png │ │ ├── Smile │ │ │ ├── Contents.json │ │ │ ├── Smile_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_01.png │ │ │ ├── Smile_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_02.png │ │ │ ├── Smile_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_03.png │ │ │ ├── Smile_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_04.png │ │ │ ├── Smile_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_05.png │ │ │ ├── Smile_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_06.png │ │ │ ├── Smile_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_07.png │ │ │ ├── Smile_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_08.png │ │ │ ├── Smile_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_09.png │ │ │ ├── Smile_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_10.png │ │ │ ├── Smile_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_11.png │ │ │ ├── Smile_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_12.png │ │ │ ├── Smile_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_13.png │ │ │ ├── Smile_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_14.png │ │ │ ├── Smile_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_15.png │ │ │ ├── Smile_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_16.png │ │ │ └── Smile_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Smile_17.png │ │ ├── SpaceBack │ │ │ ├── Contents.json │ │ │ ├── SpaceBack_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_01.jpg │ │ │ ├── SpaceBack_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_02.jpg │ │ │ ├── SpaceBack_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_03.jpg │ │ │ ├── SpaceBack_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_04.jpg │ │ │ ├── SpaceBack_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_05.jpg │ │ │ ├── SpaceBack_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_06.jpg │ │ │ ├── SpaceBack_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_07.jpg │ │ │ ├── SpaceBack_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_08.jpg │ │ │ ├── SpaceBack_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_09.jpg │ │ │ ├── SpaceBack_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_10.jpg │ │ │ ├── SpaceBack_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_11.jpg │ │ │ ├── SpaceBack_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_12.jpg │ │ │ └── SpaceBack_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SpaceBack_13.jpg │ │ ├── SunMoon │ │ │ ├── Contents.json │ │ │ ├── SunMoon_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_01.jpg │ │ │ ├── SunMoon_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_02.jpg │ │ │ ├── SunMoon_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_03.jpg │ │ │ ├── SunMoon_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_04.jpg │ │ │ ├── SunMoon_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_05.jpg │ │ │ ├── SunMoon_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_06.jpg │ │ │ ├── SunMoon_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_07.jpg │ │ │ ├── SunMoon_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_08.jpg │ │ │ ├── SunMoon_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_09.jpg │ │ │ ├── SunMoon_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_10.jpg │ │ │ ├── SunMoon_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_11.jpg │ │ │ ├── SunMoon_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_12.jpg │ │ │ ├── SunMoon_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_13.jpg │ │ │ ├── SunMoon_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_14.jpg │ │ │ ├── SunMoon_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_15.jpg │ │ │ ├── SunMoon_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_16.jpg │ │ │ ├── SunMoon_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_17.jpg │ │ │ ├── SunMoon_18.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_18.jpg │ │ │ ├── SunMoon_19.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_19.jpg │ │ │ └── SunMoon_20.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── SunMoon_20.jpg │ │ ├── Tick │ │ │ ├── Contents.json │ │ │ ├── Tick_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_01.png │ │ │ ├── Tick_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_02.png │ │ │ ├── Tick_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_03.png │ │ │ ├── Tick_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_04.png │ │ │ ├── Tick_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_05.png │ │ │ ├── Tick_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_06.png │ │ │ ├── Tick_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_07.png │ │ │ ├── Tick_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_08.png │ │ │ ├── Tick_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_09.png │ │ │ ├── Tick_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_10.png │ │ │ ├── Tick_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_11.png │ │ │ ├── Tick_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_12.png │ │ │ ├── Tick_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_13.png │ │ │ ├── Tick_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_14.png │ │ │ ├── Tick_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_15.png │ │ │ ├── Tick_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_16.png │ │ │ ├── Tick_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_17.png │ │ │ └── Tick_18.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Tick_18.png │ │ ├── Volume │ │ │ ├── Contents.json │ │ │ ├── Volume_01.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_01.png │ │ │ ├── Volume_02.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_02.png │ │ │ ├── Volume_03.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_03.png │ │ │ ├── Volume_04.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_04.png │ │ │ ├── Volume_05.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_05.png │ │ │ ├── Volume_06.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_06.png │ │ │ ├── Volume_07.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_07.png │ │ │ ├── Volume_08.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_08.png │ │ │ ├── Volume_09.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_09.png │ │ │ ├── Volume_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_10.png │ │ │ ├── Volume_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_11.png │ │ │ ├── Volume_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_12.png │ │ │ ├── Volume_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_13.png │ │ │ ├── Volume_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_14.png │ │ │ ├── Volume_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_15.png │ │ │ ├── Volume_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_16.png │ │ │ ├── Volume_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_17.png │ │ │ ├── Volume_18.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_18.png │ │ │ ├── Volume_19.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_19.png │ │ │ ├── Volume_20.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_20.png │ │ │ ├── Volume_21.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_21.png │ │ │ ├── Volume_22.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_22.png │ │ │ └── Volume_23.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Volume_23.png │ │ └── YesNo │ │ │ ├── Contents.json │ │ │ ├── YesNo_01.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_01.png │ │ │ ├── YesNo_02.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_02.png │ │ │ ├── YesNo_03.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_03.png │ │ │ ├── YesNo_04.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_04.png │ │ │ ├── YesNo_05.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_05.png │ │ │ ├── YesNo_06.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_06.png │ │ │ ├── YesNo_07.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_07.png │ │ │ ├── YesNo_08.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_08.png │ │ │ ├── YesNo_09.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_09.png │ │ │ ├── YesNo_10.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_10.png │ │ │ ├── YesNo_11.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_11.png │ │ │ ├── YesNo_12.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_12.png │ │ │ ├── YesNo_13.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_13.png │ │ │ ├── YesNo_14.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_14.png │ │ │ ├── YesNo_15.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_15.png │ │ │ ├── YesNo_16.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_16.png │ │ │ ├── YesNo_17.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_17.png │ │ │ ├── YesNo_18.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_18.png │ │ │ ├── YesNo_19.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_19.png │ │ │ ├── YesNo_20.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_20.png │ │ │ ├── YesNo_21.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_21.png │ │ │ ├── YesNo_22.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_22.png │ │ │ ├── YesNo_23.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_23.png │ │ │ ├── YesNo_24.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_24.png │ │ │ ├── YesNo_25.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_25.png │ │ │ ├── YesNo_26.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_26.png │ │ │ ├── YesNo_27.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_27.png │ │ │ ├── YesNo_28.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_28.png │ │ │ └── YesNo_29.imageset │ │ │ ├── Contents.json │ │ │ └── YesNo_29.png │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── cat.imageset │ │ ├── Contents.json │ │ └── vectorstock_1741689.png │ ├── crossBlack.imageset │ │ ├── Contents.json │ │ └── crossBlack.png │ ├── late.imageset │ │ ├── 2072098-200.png │ │ └── Contents.json │ ├── pauseBlack.imageset │ │ ├── Contents.json │ │ └── pauseBlack.png │ ├── playWhite.imageset │ │ ├── Contents.json │ │ └── playWhite.png │ ├── swamp4.imageset │ │ ├── Contents.json │ │ └── swamp4.jpg │ ├── thumbDown.imageset │ │ ├── Contents.json │ │ └── thumbDown.png │ ├── thumbUp.imageset │ │ ├── Contents.json │ │ └── thumbUp.png │ ├── tickWhite.imageset │ │ ├── Contents.json │ │ └── tickWhite.png │ └── tiger.imageset │ │ ├── Contents.json │ │ └── tiger.pdf │ ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard │ ├── Cells │ ├── SwitchCell.swift │ └── SwitchCell.xib │ ├── Extensiones │ └── PreviewExtension.swift │ ├── Info.plist │ ├── Models │ └── SwitchCellModel.swift │ ├── Switches │ ├── Boy │ │ ├── BoySwitch.swift │ │ ├── BoySwitch2.swift │ │ └── BoySwitch3.swift │ ├── Circle │ │ ├── CircleSwitch.swift │ │ ├── CircleSwitch2.swift │ │ └── CircleSwitch3.swift │ ├── City │ │ ├── CitySwitch.swift │ │ ├── CitySwitch2.swift │ │ └── CitySwitch3.swift │ ├── CrescentSun │ │ ├── CrescentSunSwitch.swift │ │ ├── CrescentSunSwitch2.swift │ │ └── CrescentSunSwitch3.swift │ ├── DayNight │ │ ├── DayNightSwitch.swift │ │ ├── DayNightSwitch2.swift │ │ └── DayNightSwitch3.swift │ ├── Earth │ │ ├── EarthSwitch.swift │ │ ├── EarthSwitch2.swift │ │ └── EarthSwitch3.swift │ ├── Forest │ │ ├── ForestSwitch.swift │ │ ├── ForestSwitch2.swift │ │ └── ForestSwitch3.swift │ ├── MoonSun │ │ ├── MoonSunSwitch.swift │ │ ├── MoonSunSwitch2.swift │ │ └── MoonSunSwitch3.swift │ ├── OnOff │ │ ├── OnOffLabelSwitch.swift │ │ ├── OnOffLabelSwitch2.swift │ │ └── OnOffLabelSwitch3.swift │ ├── Smile │ │ ├── SmileSwitch.swift │ │ ├── SmileSwitch2.swift │ │ └── SmileSwitch3.swift │ ├── Tick │ │ ├── TickSwitch.swift │ │ ├── TickSwitch2.swift │ │ └── TickSwitch3.swift │ ├── UpDown │ │ ├── UpDownImageSwitch.swift │ │ ├── UpDownImageSwitch2.swift │ │ └── UpDownImageSwitch3.swift │ ├── Volume │ │ ├── VolumeSwitch.swift │ │ ├── VolumeSwitch2.swift │ │ └── VolumeSwitch3.swift │ └── YesNo │ │ ├── YesNoSwitch.swift │ │ ├── YesNoSwitch2.swift │ │ └── YesNoSwitch3.swift │ └── ViewController.swift ├── Info ├── DDAnimatedSwitch01.gif ├── DDAnimatedSwitch02.gif ├── DDAnimatedSwitch03.gif ├── DDAnimatedSwitch04.gif ├── assert.jpg ├── jimThumb.gif ├── plist.jpg ├── small_animated.gif ├── small_base.gif ├── small_image.gif └── small_label.gif ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/.gitignore -------------------------------------------------------------------------------- /DDAnimatedSwitch.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch.podspec -------------------------------------------------------------------------------- /DDAnimatedSwitch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DDAnimatedSwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DDAnimatedSwitch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DDAnimatedSwitch.xcodeproj/xcshareddata/xcschemes/DDAnimatedSwitch.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch.xcodeproj/xcshareddata/xcschemes/DDAnimatedSwitch.xcscheme -------------------------------------------------------------------------------- /DDAnimatedSwitch/DDAnimatedSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch/DDAnimatedSwitch.h -------------------------------------------------------------------------------- /DDAnimatedSwitch/DDAnimatedSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch/DDAnimatedSwitch.swift -------------------------------------------------------------------------------- /DDAnimatedSwitch/DDAnimatedThumbView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch/DDAnimatedThumbView.swift -------------------------------------------------------------------------------- /DDAnimatedSwitch/DDImageSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch/DDImageSwitch.swift -------------------------------------------------------------------------------- /DDAnimatedSwitch/DDLabelSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch/DDLabelSwitch.swift -------------------------------------------------------------------------------- /DDAnimatedSwitch/DDSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch/DDSwitch.swift -------------------------------------------------------------------------------- /DDAnimatedSwitch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/DDAnimatedSwitch/Info.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample.xcodeproj/xcshareddata/xcschemes/DDAnimatedSwitchExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample.xcodeproj/xcshareddata/xcschemes/DDAnimatedSwitchExample.xcscheme -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/BirdAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/BirdAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/BoyAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/BoyAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/CircleAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/CircleAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/CityAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/CityAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/DayNightAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/DayNightAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/EarthAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/EarthAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/ForestAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/ForestAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/ManJumpAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/ManJumpAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/MoonSunAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/MoonSunAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/SmallBirdAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/SmallBirdAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/SmileAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/SmileAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/SpaceBackAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/SpaceBackAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/SunMoonAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/SunMoonAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/TickAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/TickAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/VolumeAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/VolumeAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Animations/YesNoAnimation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Animations/YesNoAnimation.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/AppDelegate.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Bird_18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Bird/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_00.imageset/Boy_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_00.imageset/Boy_00.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_00.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_00.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_01.imageset/Boy_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_01.imageset/Boy_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_02.imageset/Boy_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_02.imageset/Boy_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_03.imageset/Boy_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_03.imageset/Boy_03.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_04.imageset/Boy_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_04.imageset/Boy_04.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_05.imageset/Boy_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_05.imageset/Boy_05.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_06.imageset/Boy_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_06.imageset/Boy_06.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_07.imageset/Boy_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_07.imageset/Boy_07.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_08.imageset/Boy_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_08.imageset/Boy_08.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_09.imageset/Boy_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_09.imageset/Boy_09.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Boy_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Boy/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_01.imageset/Circle_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_01.imageset/Circle_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_02.imageset/Circle_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_02.imageset/Circle_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_03.imageset/Circle_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_03.imageset/Circle_03.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_04.imageset/Circle_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_04.imageset/Circle_04.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_05.imageset/Circle_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_05.imageset/Circle_05.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_06.imageset/Circle_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_06.imageset/Circle_06.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_07.imageset/Circle_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_07.imageset/Circle_07.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_08.imageset/Circle_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_08.imageset/Circle_08.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_09.imageset/Circle_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_09.imageset/Circle_09.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_10.imageset/Circle_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_10.imageset/Circle_10.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_11.imageset/Circle_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_11.imageset/Circle_11.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_12.imageset/Circle_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_12.imageset/Circle_12.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_13.imageset/Circle_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_13.imageset/Circle_13.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_14.imageset/Circle_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_14.imageset/Circle_14.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_15.imageset/Circle_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_15.imageset/Circle_15.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_16.imageset/Circle_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_16.imageset/Circle_16.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_17.imageset/Circle_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_17.imageset/Circle_17.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_18.imageset/Circle_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_18.imageset/Circle_18.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_19.imageset/Circle_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_19.imageset/Circle_19.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_19.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_20.imageset/Circle_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_20.imageset/Circle_20.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_20.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_21.imageset/Circle_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_21.imageset/Circle_21.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_21.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_22.imageset/Circle_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_22.imageset/Circle_22.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Circle_22.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Circle/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_01.imageset/City_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_01.imageset/City_01.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_02.imageset/City_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_02.imageset/City_02.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_03.imageset/City_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_03.imageset/City_03.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_04.imageset/City_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_04.imageset/City_04.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_05.imageset/City_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_05.imageset/City_05.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_06.imageset/City_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_06.imageset/City_06.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_07.imageset/City_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_07.imageset/City_07.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_08.imageset/City_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_08.imageset/City_08.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_09.imageset/City_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_09.imageset/City_09.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_10.imageset/City_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_10.imageset/City_10.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_11.imageset/City_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_11.imageset/City_11.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_12.imageset/City_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_12.imageset/City_12.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_13.imageset/City_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_13.imageset/City_13.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_14.imageset/City_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_14.imageset/City_14.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_15.imageset/City_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_15.imageset/City_15.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_16.imageset/City_16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_16.imageset/City_16.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_17.imageset/City_17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_17.imageset/City_17.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/City_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/City/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_19.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_21.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_22.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_23.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_23.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_24.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_25.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_25.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_26.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_26.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_27.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_27.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_28.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_29.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_29.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_30.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_30.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_31.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_31.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_32.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_32.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_33.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_33.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_34.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_34.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_35.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_35.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_36.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_36.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_37.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_37.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_38.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_38.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_39.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_39.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_40.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_40.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_41.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_41.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_42.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_42.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_43.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_43.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_44.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_44.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_45.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/DayNight/DayNight_45.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_01.imageset/Earth_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_01.imageset/Earth_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_02.imageset/Earth_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_02.imageset/Earth_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_03.imageset/Earth_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_03.imageset/Earth_03.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_04.imageset/Earth_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_04.imageset/Earth_04.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_05.imageset/Earth_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_05.imageset/Earth_05.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_06.imageset/Earth_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_06.imageset/Earth_06.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_07.imageset/Earth_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_07.imageset/Earth_07.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_08.imageset/Earth_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_08.imageset/Earth_08.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_09.imageset/Earth_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_09.imageset/Earth_09.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_10.imageset/Earth_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_10.imageset/Earth_10.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_11.imageset/Earth_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_11.imageset/Earth_11.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_12.imageset/Earth_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_12.imageset/Earth_12.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_13.imageset/Earth_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_13.imageset/Earth_13.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_14.imageset/Earth_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_14.imageset/Earth_14.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_15.imageset/Earth_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_15.imageset/Earth_15.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_16.imageset/Earth_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_16.imageset/Earth_16.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_17.imageset/Earth_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_17.imageset/Earth_17.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_18.imageset/Earth_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Earth/Earth_18.imageset/Earth_18.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_01.imageset/Forest_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_01.imageset/Forest_01.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_02.imageset/Forest_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_02.imageset/Forest_02.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_03.imageset/Forest_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_03.imageset/Forest_03.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_04.imageset/Forest_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_04.imageset/Forest_04.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_05.imageset/Forest_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_05.imageset/Forest_05.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_06.imageset/Forest_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_06.imageset/Forest_06.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_07.imageset/Forest_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_07.imageset/Forest_07.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_08.imageset/Forest_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_08.imageset/Forest_08.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_09.imageset/Forest_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_09.imageset/Forest_09.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_10.imageset/Forest_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_10.imageset/Forest_10.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_11.imageset/Forest_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_11.imageset/Forest_11.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_12.imageset/Forest_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_12.imageset/Forest_12.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_13.imageset/Forest_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_13.imageset/Forest_13.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_14.imageset/Forest_14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_14.imageset/Forest_14.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_15.imageset/Forest_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Forest/Forest_15.imageset/Forest_15.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_01.imageset/MoonSun_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_01.imageset/MoonSun_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_02.imageset/MoonSun_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_02.imageset/MoonSun_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_03.imageset/MoonSun_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_03.imageset/MoonSun_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_04.imageset/MoonSun_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_04.imageset/MoonSun_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_05.imageset/MoonSun_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_05.imageset/MoonSun_03.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_06.imageset/MoonSun_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_06.imageset/MoonSun_04.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_07.imageset/MoonSun_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_07.imageset/MoonSun_05.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_08.imageset/MoonSun_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_08.imageset/MoonSun_06.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_09.imageset/MoonSun_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_09.imageset/MoonSun_07.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_10.imageset/MoonSun_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_10.imageset/MoonSun_08.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_11.imageset/MoonSun_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_11.imageset/MoonSun_09.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_12.imageset/MoonSun_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_12.imageset/MoonSun_10.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_13.imageset/MoonSun_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_13.imageset/MoonSun_11.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_14.imageset/MoonSun_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_14.imageset/MoonSun_12.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_15.imageset/MoonSun_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_15.imageset/MoonSun_13.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_16.imageset/MoonSun_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_16.imageset/MoonSun_14.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_17.imageset/MoonSun_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/MoonSun/MoonSun_17.imageset/MoonSun_15.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SmallBird/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SmallBird/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_01.imageset/Smile_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_01.imageset/Smile_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_02.imageset/Smile_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_02.imageset/Smile_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_03.imageset/Smile_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_03.imageset/Smile_03.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_04.imageset/Smile_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_04.imageset/Smile_04.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_05.imageset/Smile_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_05.imageset/Smile_05.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_06.imageset/Smile_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_06.imageset/Smile_06.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_07.imageset/Smile_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_07.imageset/Smile_07.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_08.imageset/Smile_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_08.imageset/Smile_08.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_09.imageset/Smile_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_09.imageset/Smile_09.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_10.imageset/Smile_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_10.imageset/Smile_10.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_11.imageset/Smile_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_11.imageset/Smile_11.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_12.imageset/Smile_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_12.imageset/Smile_12.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_13.imageset/Smile_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_13.imageset/Smile_13.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_14.imageset/Smile_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_14.imageset/Smile_14.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_15.imageset/Smile_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_15.imageset/Smile_15.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_16.imageset/Smile_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_16.imageset/Smile_16.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_17.imageset/Smile_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Smile/Smile_17.imageset/Smile_17.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SpaceBack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SpaceBack/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_01.imageset/SunMoon_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_01.imageset/SunMoon_01.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_02.imageset/SunMoon_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_02.imageset/SunMoon_02.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_03.imageset/SunMoon_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_03.imageset/SunMoon_03.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_04.imageset/SunMoon_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_04.imageset/SunMoon_04.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_05.imageset/SunMoon_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_05.imageset/SunMoon_05.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_06.imageset/SunMoon_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_06.imageset/SunMoon_06.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_07.imageset/SunMoon_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_07.imageset/SunMoon_07.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_08.imageset/SunMoon_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_08.imageset/SunMoon_08.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_09.imageset/SunMoon_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_09.imageset/SunMoon_09.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_10.imageset/SunMoon_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_10.imageset/SunMoon_10.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_11.imageset/SunMoon_11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_11.imageset/SunMoon_11.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_12.imageset/SunMoon_12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_12.imageset/SunMoon_12.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_13.imageset/SunMoon_13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_13.imageset/SunMoon_13.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_19.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/SunMoon/SunMoon_20.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_01.imageset/Tick_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_01.imageset/Tick_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_02.imageset/Tick_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_02.imageset/Tick_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_03.imageset/Tick_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_03.imageset/Tick_03.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_04.imageset/Tick_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_04.imageset/Tick_04.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_05.imageset/Tick_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_05.imageset/Tick_05.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_06.imageset/Tick_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_06.imageset/Tick_06.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_07.imageset/Tick_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_07.imageset/Tick_07.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_08.imageset/Tick_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_08.imageset/Tick_08.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_09.imageset/Tick_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_09.imageset/Tick_09.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_10.imageset/Tick_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_10.imageset/Tick_10.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_11.imageset/Tick_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_11.imageset/Tick_11.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_12.imageset/Tick_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_12.imageset/Tick_12.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_13.imageset/Tick_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_13.imageset/Tick_13.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_14.imageset/Tick_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_14.imageset/Tick_14.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_15.imageset/Tick_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_15.imageset/Tick_15.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_16.imageset/Tick_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_16.imageset/Tick_16.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_17.imageset/Tick_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_17.imageset/Tick_17.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_18.imageset/Tick_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Tick/Tick_18.imageset/Tick_18.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_01.imageset/Volume_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_01.imageset/Volume_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_02.imageset/Volume_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_02.imageset/Volume_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_03.imageset/Volume_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_03.imageset/Volume_03.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_04.imageset/Volume_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_04.imageset/Volume_04.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_05.imageset/Volume_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_05.imageset/Volume_05.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_06.imageset/Volume_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_06.imageset/Volume_06.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_07.imageset/Volume_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_07.imageset/Volume_07.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_08.imageset/Volume_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_08.imageset/Volume_08.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_09.imageset/Volume_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_09.imageset/Volume_09.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_10.imageset/Volume_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_10.imageset/Volume_10.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_11.imageset/Volume_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_11.imageset/Volume_11.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_12.imageset/Volume_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_12.imageset/Volume_12.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_13.imageset/Volume_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_13.imageset/Volume_13.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_14.imageset/Volume_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_14.imageset/Volume_14.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_15.imageset/Volume_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_15.imageset/Volume_15.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_16.imageset/Volume_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_16.imageset/Volume_16.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_17.imageset/Volume_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_17.imageset/Volume_17.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_18.imageset/Volume_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_18.imageset/Volume_18.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_19.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_19.imageset/Volume_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_19.imageset/Volume_19.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_20.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_20.imageset/Volume_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_20.imageset/Volume_20.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_21.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_21.imageset/Volume_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_21.imageset/Volume_21.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_22.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_22.imageset/Volume_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_22.imageset/Volume_22.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_23.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_23.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_23.imageset/Volume_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/Volume/Volume_23.imageset/Volume_23.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_01.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_01.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_01.imageset/YesNo_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_01.imageset/YesNo_01.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_02.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_02.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_02.imageset/YesNo_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_02.imageset/YesNo_02.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_03.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_03.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_03.imageset/YesNo_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_03.imageset/YesNo_03.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_04.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_04.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_04.imageset/YesNo_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_04.imageset/YesNo_04.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_05.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_05.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_05.imageset/YesNo_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_05.imageset/YesNo_05.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_06.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_06.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_06.imageset/YesNo_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_06.imageset/YesNo_06.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_07.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_07.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_07.imageset/YesNo_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_07.imageset/YesNo_07.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_08.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_08.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_08.imageset/YesNo_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_08.imageset/YesNo_08.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_09.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_09.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_09.imageset/YesNo_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_09.imageset/YesNo_09.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_10.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_10.imageset/YesNo_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_10.imageset/YesNo_10.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_11.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_11.imageset/YesNo_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_11.imageset/YesNo_11.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_12.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_12.imageset/YesNo_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_12.imageset/YesNo_12.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_13.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_13.imageset/YesNo_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_13.imageset/YesNo_13.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_14.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_14.imageset/YesNo_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_14.imageset/YesNo_14.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_15.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_15.imageset/YesNo_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_15.imageset/YesNo_15.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_16.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_16.imageset/YesNo_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_16.imageset/YesNo_16.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_17.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_17.imageset/YesNo_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_17.imageset/YesNo_17.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_18.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_18.imageset/YesNo_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_18.imageset/YesNo_18.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_19.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_19.imageset/YesNo_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_19.imageset/YesNo_19.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_20.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_20.imageset/YesNo_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_20.imageset/YesNo_20.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_21.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_21.imageset/YesNo_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_21.imageset/YesNo_21.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_22.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_22.imageset/YesNo_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_22.imageset/YesNo_22.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_23.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_23.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_23.imageset/YesNo_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_23.imageset/YesNo_23.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_24.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_24.imageset/YesNo_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_24.imageset/YesNo_24.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_25.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_25.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_25.imageset/YesNo_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_25.imageset/YesNo_25.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_26.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_26.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_26.imageset/YesNo_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_26.imageset/YesNo_26.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_27.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_27.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_27.imageset/YesNo_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_27.imageset/YesNo_27.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_28.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_28.imageset/YesNo_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_28.imageset/YesNo_28.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_29.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_29.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_29.imageset/YesNo_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Animations/YesNo/YesNo_29.imageset/YesNo_29.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/cat.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/cat.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/cat.imageset/vectorstock_1741689.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/cat.imageset/vectorstock_1741689.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/crossBlack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/crossBlack.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/crossBlack.imageset/crossBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/crossBlack.imageset/crossBlack.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/late.imageset/2072098-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/late.imageset/2072098-200.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/late.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/late.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/pauseBlack.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/pauseBlack.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/pauseBlack.imageset/pauseBlack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/pauseBlack.imageset/pauseBlack.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/playWhite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/playWhite.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/playWhite.imageset/playWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/playWhite.imageset/playWhite.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/swamp4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/swamp4.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/swamp4.imageset/swamp4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/swamp4.imageset/swamp4.jpg -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/thumbDown.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/thumbDown.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/thumbDown.imageset/thumbDown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/thumbDown.imageset/thumbDown.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/thumbUp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/thumbUp.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/thumbUp.imageset/thumbUp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/thumbUp.imageset/thumbUp.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/tickWhite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/tickWhite.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/tickWhite.imageset/tickWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/tickWhite.imageset/tickWhite.png -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/tiger.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/tiger.imageset/Contents.json -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Assets.xcassets/tiger.imageset/tiger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Assets.xcassets/tiger.imageset/tiger.pdf -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Cells/SwitchCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Cells/SwitchCell.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Cells/SwitchCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Cells/SwitchCell.xib -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Extensiones/PreviewExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Extensiones/PreviewExtension.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Info.plist -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Models/SwitchCellModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Models/SwitchCellModel.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Boy/BoySwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Boy/BoySwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Boy/BoySwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Boy/BoySwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Boy/BoySwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Boy/BoySwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Circle/CircleSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Circle/CircleSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Circle/CircleSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Circle/CircleSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Circle/CircleSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Circle/CircleSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/City/CitySwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/City/CitySwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/City/CitySwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/City/CitySwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/City/CitySwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/City/CitySwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/CrescentSun/CrescentSunSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/CrescentSun/CrescentSunSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/CrescentSun/CrescentSunSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/CrescentSun/CrescentSunSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/CrescentSun/CrescentSunSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/CrescentSun/CrescentSunSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/DayNight/DayNightSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/DayNight/DayNightSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/DayNight/DayNightSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/DayNight/DayNightSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/DayNight/DayNightSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/DayNight/DayNightSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Earth/EarthSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Earth/EarthSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Earth/EarthSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Earth/EarthSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Earth/EarthSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Earth/EarthSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Forest/ForestSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Forest/ForestSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Forest/ForestSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Forest/ForestSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Forest/ForestSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Forest/ForestSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/MoonSun/MoonSunSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/MoonSun/MoonSunSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/MoonSun/MoonSunSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/MoonSun/MoonSunSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/MoonSun/MoonSunSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/MoonSun/MoonSunSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/OnOff/OnOffLabelSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/OnOff/OnOffLabelSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/OnOff/OnOffLabelSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/OnOff/OnOffLabelSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/OnOff/OnOffLabelSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/OnOff/OnOffLabelSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Smile/SmileSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Smile/SmileSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Smile/SmileSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Smile/SmileSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Smile/SmileSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Smile/SmileSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Tick/TickSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Tick/TickSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Tick/TickSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Tick/TickSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Tick/TickSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Tick/TickSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/UpDown/UpDownImageSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/UpDown/UpDownImageSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/UpDown/UpDownImageSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/UpDown/UpDownImageSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/UpDown/UpDownImageSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/UpDown/UpDownImageSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Volume/VolumeSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Volume/VolumeSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Volume/VolumeSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Volume/VolumeSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/Volume/VolumeSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/Volume/VolumeSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/YesNo/YesNoSwitch.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/YesNo/YesNoSwitch.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/YesNo/YesNoSwitch2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/YesNo/YesNoSwitch2.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/Switches/YesNo/YesNoSwitch3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/Switches/YesNo/YesNoSwitch3.swift -------------------------------------------------------------------------------- /Example/DDAnimatedSwitchExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Example/DDAnimatedSwitchExample/ViewController.swift -------------------------------------------------------------------------------- /Info/DDAnimatedSwitch01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/DDAnimatedSwitch01.gif -------------------------------------------------------------------------------- /Info/DDAnimatedSwitch02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/DDAnimatedSwitch02.gif -------------------------------------------------------------------------------- /Info/DDAnimatedSwitch03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/DDAnimatedSwitch03.gif -------------------------------------------------------------------------------- /Info/DDAnimatedSwitch04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/DDAnimatedSwitch04.gif -------------------------------------------------------------------------------- /Info/assert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/assert.jpg -------------------------------------------------------------------------------- /Info/jimThumb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/jimThumb.gif -------------------------------------------------------------------------------- /Info/plist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/plist.jpg -------------------------------------------------------------------------------- /Info/small_animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/small_animated.gif -------------------------------------------------------------------------------- /Info/small_base.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/small_base.gif -------------------------------------------------------------------------------- /Info/small_image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/small_image.gif -------------------------------------------------------------------------------- /Info/small_label.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/Info/small_label.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/d-dotsenko/DDAnimatedSwitch/HEAD/README.md --------------------------------------------------------------------------------