├── Assets ├── checkBoxesAll32Landscape.gif ├── checkBoxesAll32Portrait.gif └── flow-logo@2x.png ├── Checkboxes.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── README.md ├── Resources ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-1024.png │ │ ├── Icon-120.png │ │ ├── Icon-121.png │ │ ├── Icon-152.png │ │ ├── Icon-167.png │ │ ├── Icon-180.png │ │ ├── Icon-20.png │ │ ├── Icon-29.png │ │ ├── Icon-40.png │ │ ├── Icon-41.png │ │ ├── Icon-42.png │ │ ├── Icon-58.png │ │ ├── Icon-59.png │ │ ├── Icon-60.png │ │ ├── Icon-76.png │ │ ├── Icon-80.png │ │ ├── Icon-81.png │ │ └── Icon-87.png │ ├── Contents.json │ └── FlowWordmark.imageset │ │ ├── Contents.json │ │ └── FlowWordmark.pdf ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard └── Info.plist └── Sources ├── Animations ├── Abbaci │ ├── AbbaciButton.swift │ ├── AbbaciTimeline.swift │ └── AbbaciView.swift ├── Affirm │ ├── AffirmButton.swift │ ├── AffirmTimeline.swift │ └── AffirmView.swift ├── Alarm │ ├── AlarmButton.swift │ ├── AlarmTimeline.swift │ └── AlarmView.swift ├── Allinone │ ├── AllinoneButton.swift │ ├── AllinoneTimeline.swift │ └── AllinoneView.swift ├── Ambiance │ ├── AmbianceButton.swift │ ├── AmbianceReverseTimeline.swift │ ├── AmbianceTimeline.swift │ └── AmbianceView.swift ├── Bounce │ ├── BounceButton.swift │ ├── BounceTimeline.swift │ └── BounceView.swift ├── Boxed │ ├── BoxedButton.swift │ ├── BoxedTimeline.swift │ └── BoxedView.swift ├── Burst │ ├── BurstButton.swift │ ├── BurstReverseTimeline.swift │ ├── BurstTimeline.swift │ └── BurstView.swift ├── CheckIn │ ├── CheckInButton.swift │ ├── CheckInTimeline.swift │ └── CheckInView.swift ├── Dashing │ ├── DashingButton.swift │ ├── DashingTimeline.swift │ └── DashingView.swift ├── Didot │ ├── DidotButton.swift │ ├── DidotTimeline.swift │ └── DidotView.swift ├── Disguise │ ├── DisguiseButton.swift │ ├── DisguiseTimeline.swift │ └── DisguiseView.swift ├── Fluid │ ├── FluidButton.swift │ ├── FluidTimeline.swift │ └── FluidView.swift ├── Grown │ ├── GrownButton.swift │ ├── GrownTimeline.swift │ └── GrownView.swift ├── GuessHow │ ├── GuessHowButton.swift │ ├── GuessHowTimeline.swift │ └── GuessHowView.swift ├── Layers │ ├── LayersButton.swift │ ├── LayersTimeline.swift │ └── LayersView.swift ├── Lovely │ ├── LovelyButton.swift │ ├── LovelyMaskedView.swift │ ├── LovelyReverseTimeline.swift │ └── LovelyTimeline.swift ├── Mondo │ ├── MondoButton.swift │ ├── MondoTimeline.swift │ └── MondoView.swift ├── Overt │ ├── OvertButton.swift │ ├── OvertTimeline.swift │ └── OvertView.swift ├── Partition │ ├── PartitionButton.swift │ ├── PartitionTimeline.swift │ └── PartitionView.swift ├── Pinkie │ ├── PinkieButton.swift │ ├── PinkieTimeline.swift │ └── PinkieView.swift ├── Pop │ ├── PopButton.swift │ ├── PopReverseTimeline.swift │ ├── PopTimeline.swift │ └── PopView.swift ├── Prime │ ├── PrimeButton.swift │ ├── PrimeTimeline.swift │ └── PrimeView.swift ├── Simpleton │ ├── SimpletonButton.swift │ ├── SimpletonReverseTimeline.swift │ ├── SimpletonTimeline.swift │ └── SimpletonView.swift ├── Slices │ ├── SlicesButton.swift │ ├── SlicesTimeline.swift │ └── SlicesView.swift ├── Starburst │ ├── StarburstButton.swift │ ├── StarburstReverseTimeline.swift │ ├── StarburstTimeline.swift │ └── StarburstView.swift ├── Tick │ ├── TickButton.swift │ ├── TickTimeline.swift │ └── TickView.swift ├── Tracer │ ├── TracerButton.swift │ ├── TracerTimeline.swift │ └── TracerView.swift ├── Transitive │ ├── TransitiveButton.swift │ ├── TransitiveTimeline.swift │ └── TransitiveView.swift ├── Weebly │ ├── WeeblyButton.swift │ ├── WeeblyTimeline.swift │ └── WeeblyView.swift ├── Windmill │ ├── WindmillButton.swift │ ├── WindmillReverseTimeline.swift │ ├── WindmillTimeline.swift │ └── WindmillView.swift └── Zombo │ ├── ZomboButton.swift │ ├── ZomboTimeline.swift │ └── ZomboView.swift ├── AppDelegate.swift ├── Checkboxes.swift ├── FlowCommon ├── Animation.swift ├── CAKeyframeAnimation+Extension.swift ├── CAMediaTimingFunction+Extension.swift ├── CATransaction+Extension.swift ├── CGPath+SVG.swift ├── NSMutableParagraphStyle+Extension.swift ├── NSShadow+Extension.swift ├── ShapeView.swift ├── Sound.swift ├── TextView.swift ├── Timeline.swift ├── UIImage+Extension.swift └── UIView+Extension.swift ├── LaunchAnimation ├── LaunchAnimationTimeline.swift ├── LaunchAnimationView.swift └── LaunchAnimationViewController.swift ├── ToggleButton.swift └── ViewController.swift /Assets/checkBoxesAll32Landscape.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Assets/checkBoxesAll32Landscape.gif -------------------------------------------------------------------------------- /Assets/checkBoxesAll32Portrait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Assets/checkBoxesAll32Portrait.gif -------------------------------------------------------------------------------- /Assets/flow-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Assets/flow-logo@2x.png -------------------------------------------------------------------------------- /Checkboxes.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Checkboxes.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Checkboxes.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Checkboxes.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Checkboxes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Checkboxes.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-1024.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-120.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-121.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-121.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-152.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-167.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-180.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-20.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-41.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-42.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-58.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-59.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-60.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-80.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-81.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-81.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/AppIcon.appiconset/Icon-87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/AppIcon.appiconset/Icon-87.png -------------------------------------------------------------------------------- /Resources/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/FlowWordmark.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/FlowWordmark.imageset/Contents.json -------------------------------------------------------------------------------- /Resources/Assets.xcassets/FlowWordmark.imageset/FlowWordmark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Assets.xcassets/FlowWordmark.imageset/FlowWordmark.pdf -------------------------------------------------------------------------------- /Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Resources/Info.plist -------------------------------------------------------------------------------- /Sources/Animations/Abbaci/AbbaciButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Abbaci/AbbaciButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Abbaci/AbbaciTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Abbaci/AbbaciTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Abbaci/AbbaciView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Abbaci/AbbaciView.swift -------------------------------------------------------------------------------- /Sources/Animations/Affirm/AffirmButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Affirm/AffirmButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Affirm/AffirmTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Affirm/AffirmTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Affirm/AffirmView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Affirm/AffirmView.swift -------------------------------------------------------------------------------- /Sources/Animations/Alarm/AlarmButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Alarm/AlarmButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Alarm/AlarmTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Alarm/AlarmTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Alarm/AlarmView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Alarm/AlarmView.swift -------------------------------------------------------------------------------- /Sources/Animations/Allinone/AllinoneButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Allinone/AllinoneButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Allinone/AllinoneTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Allinone/AllinoneTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Allinone/AllinoneView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Allinone/AllinoneView.swift -------------------------------------------------------------------------------- /Sources/Animations/Ambiance/AmbianceButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Ambiance/AmbianceButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Ambiance/AmbianceReverseTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Ambiance/AmbianceReverseTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Ambiance/AmbianceTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Ambiance/AmbianceTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Ambiance/AmbianceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Ambiance/AmbianceView.swift -------------------------------------------------------------------------------- /Sources/Animations/Bounce/BounceButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Bounce/BounceButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Bounce/BounceTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Bounce/BounceTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Bounce/BounceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Bounce/BounceView.swift -------------------------------------------------------------------------------- /Sources/Animations/Boxed/BoxedButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Boxed/BoxedButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Boxed/BoxedTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Boxed/BoxedTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Boxed/BoxedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Boxed/BoxedView.swift -------------------------------------------------------------------------------- /Sources/Animations/Burst/BurstButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Burst/BurstButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Burst/BurstReverseTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Burst/BurstReverseTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Burst/BurstTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Burst/BurstTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Burst/BurstView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Burst/BurstView.swift -------------------------------------------------------------------------------- /Sources/Animations/CheckIn/CheckInButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/CheckIn/CheckInButton.swift -------------------------------------------------------------------------------- /Sources/Animations/CheckIn/CheckInTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/CheckIn/CheckInTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/CheckIn/CheckInView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/CheckIn/CheckInView.swift -------------------------------------------------------------------------------- /Sources/Animations/Dashing/DashingButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Dashing/DashingButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Dashing/DashingTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Dashing/DashingTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Dashing/DashingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Dashing/DashingView.swift -------------------------------------------------------------------------------- /Sources/Animations/Didot/DidotButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Didot/DidotButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Didot/DidotTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Didot/DidotTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Didot/DidotView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Didot/DidotView.swift -------------------------------------------------------------------------------- /Sources/Animations/Disguise/DisguiseButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Disguise/DisguiseButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Disguise/DisguiseTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Disguise/DisguiseTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Disguise/DisguiseView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Disguise/DisguiseView.swift -------------------------------------------------------------------------------- /Sources/Animations/Fluid/FluidButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Fluid/FluidButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Fluid/FluidTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Fluid/FluidTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Fluid/FluidView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Fluid/FluidView.swift -------------------------------------------------------------------------------- /Sources/Animations/Grown/GrownButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Grown/GrownButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Grown/GrownTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Grown/GrownTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Grown/GrownView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Grown/GrownView.swift -------------------------------------------------------------------------------- /Sources/Animations/GuessHow/GuessHowButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/GuessHow/GuessHowButton.swift -------------------------------------------------------------------------------- /Sources/Animations/GuessHow/GuessHowTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/GuessHow/GuessHowTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/GuessHow/GuessHowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/GuessHow/GuessHowView.swift -------------------------------------------------------------------------------- /Sources/Animations/Layers/LayersButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Layers/LayersButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Layers/LayersTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Layers/LayersTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Layers/LayersView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Layers/LayersView.swift -------------------------------------------------------------------------------- /Sources/Animations/Lovely/LovelyButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Lovely/LovelyButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Lovely/LovelyMaskedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Lovely/LovelyMaskedView.swift -------------------------------------------------------------------------------- /Sources/Animations/Lovely/LovelyReverseTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Lovely/LovelyReverseTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Lovely/LovelyTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Lovely/LovelyTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Mondo/MondoButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Mondo/MondoButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Mondo/MondoTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Mondo/MondoTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Mondo/MondoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Mondo/MondoView.swift -------------------------------------------------------------------------------- /Sources/Animations/Overt/OvertButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Overt/OvertButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Overt/OvertTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Overt/OvertTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Overt/OvertView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Overt/OvertView.swift -------------------------------------------------------------------------------- /Sources/Animations/Partition/PartitionButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Partition/PartitionButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Partition/PartitionTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Partition/PartitionTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Partition/PartitionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Partition/PartitionView.swift -------------------------------------------------------------------------------- /Sources/Animations/Pinkie/PinkieButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Pinkie/PinkieButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Pinkie/PinkieTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Pinkie/PinkieTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Pinkie/PinkieView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Pinkie/PinkieView.swift -------------------------------------------------------------------------------- /Sources/Animations/Pop/PopButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Pop/PopButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Pop/PopReverseTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Pop/PopReverseTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Pop/PopTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Pop/PopTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Pop/PopView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Pop/PopView.swift -------------------------------------------------------------------------------- /Sources/Animations/Prime/PrimeButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Prime/PrimeButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Prime/PrimeTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Prime/PrimeTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Prime/PrimeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Prime/PrimeView.swift -------------------------------------------------------------------------------- /Sources/Animations/Simpleton/SimpletonButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Simpleton/SimpletonButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Simpleton/SimpletonReverseTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Simpleton/SimpletonReverseTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Simpleton/SimpletonTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Simpleton/SimpletonTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Simpleton/SimpletonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Simpleton/SimpletonView.swift -------------------------------------------------------------------------------- /Sources/Animations/Slices/SlicesButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Slices/SlicesButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Slices/SlicesTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Slices/SlicesTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Slices/SlicesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Slices/SlicesView.swift -------------------------------------------------------------------------------- /Sources/Animations/Starburst/StarburstButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Starburst/StarburstButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Starburst/StarburstReverseTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Starburst/StarburstReverseTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Starburst/StarburstTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Starburst/StarburstTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Starburst/StarburstView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Starburst/StarburstView.swift -------------------------------------------------------------------------------- /Sources/Animations/Tick/TickButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Tick/TickButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Tick/TickTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Tick/TickTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Tick/TickView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Tick/TickView.swift -------------------------------------------------------------------------------- /Sources/Animations/Tracer/TracerButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Tracer/TracerButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Tracer/TracerTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Tracer/TracerTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Tracer/TracerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Tracer/TracerView.swift -------------------------------------------------------------------------------- /Sources/Animations/Transitive/TransitiveButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Transitive/TransitiveButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Transitive/TransitiveTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Transitive/TransitiveTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Transitive/TransitiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Transitive/TransitiveView.swift -------------------------------------------------------------------------------- /Sources/Animations/Weebly/WeeblyButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Weebly/WeeblyButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Weebly/WeeblyTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Weebly/WeeblyTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Weebly/WeeblyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Weebly/WeeblyView.swift -------------------------------------------------------------------------------- /Sources/Animations/Windmill/WindmillButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Windmill/WindmillButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Windmill/WindmillReverseTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Windmill/WindmillReverseTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Windmill/WindmillTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Windmill/WindmillTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Windmill/WindmillView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Windmill/WindmillView.swift -------------------------------------------------------------------------------- /Sources/Animations/Zombo/ZomboButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Zombo/ZomboButton.swift -------------------------------------------------------------------------------- /Sources/Animations/Zombo/ZomboTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Zombo/ZomboTimeline.swift -------------------------------------------------------------------------------- /Sources/Animations/Zombo/ZomboView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Animations/Zombo/ZomboView.swift -------------------------------------------------------------------------------- /Sources/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/AppDelegate.swift -------------------------------------------------------------------------------- /Sources/Checkboxes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/Checkboxes.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/Animation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/Animation.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/CAKeyframeAnimation+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/CAKeyframeAnimation+Extension.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/CAMediaTimingFunction+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/CAMediaTimingFunction+Extension.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/CATransaction+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/CATransaction+Extension.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/CGPath+SVG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/CGPath+SVG.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/NSMutableParagraphStyle+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/NSMutableParagraphStyle+Extension.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/NSShadow+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/NSShadow+Extension.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/ShapeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/ShapeView.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/Sound.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/Sound.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/TextView.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/Timeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/Timeline.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/UIImage+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/UIImage+Extension.swift -------------------------------------------------------------------------------- /Sources/FlowCommon/UIView+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/FlowCommon/UIView+Extension.swift -------------------------------------------------------------------------------- /Sources/LaunchAnimation/LaunchAnimationTimeline.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/LaunchAnimation/LaunchAnimationTimeline.swift -------------------------------------------------------------------------------- /Sources/LaunchAnimation/LaunchAnimationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/LaunchAnimation/LaunchAnimationView.swift -------------------------------------------------------------------------------- /Sources/LaunchAnimation/LaunchAnimationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/LaunchAnimation/LaunchAnimationViewController.swift -------------------------------------------------------------------------------- /Sources/ToggleButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/ToggleButton.swift -------------------------------------------------------------------------------- /Sources/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/createwithflow/Checkboxes/HEAD/Sources/ViewController.swift --------------------------------------------------------------------------------