├── .DS_Store ├── .github ├── FUNDING.yml └── workflows │ └── swift.yml ├── .gitignore ├── Animatify.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── shubham.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── shubham.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── Animatify ├── .DS_Store ├── Animations │ ├── ButtonAnimations.swift │ ├── CoreAnimations.swift │ ├── TableViewAnimations.swift │ └── UIViewAnimations.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── .DS_Store │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-20.png │ │ ├── Icon-20@2x-1.png │ │ ├── Icon-20@2x.png │ │ ├── Icon-20@3x.png │ │ ├── Icon-29.png │ │ ├── Icon-29@2x-1.png │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x.png │ │ ├── Icon-40.png │ │ ├── Icon-40@2x-1.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ └── Icon-83_5@2x.png │ ├── Contents.json │ ├── colors │ │ ├── Contents.json │ │ ├── accentColor.colorset │ │ │ └── Contents.json │ │ ├── alternateBackground.colorset │ │ │ └── Contents.json │ │ ├── background.colorset │ │ │ └── Contents.json │ │ └── label.colorset │ │ │ └── Contents.json │ ├── movies │ │ ├── 1.imageset │ │ │ ├── Contents.json │ │ │ └── Screen Shot 2020-06-29 at 4.58.54 PM.png │ │ ├── 2.imageset │ │ │ ├── Contents.json │ │ │ └── Screen Shot 2020-06-29 at 7.08.57 PM.png │ │ ├── 3.imageset │ │ │ ├── Contents.json │ │ │ └── Screen Shot 2020-06-29 at 5.00.13 PM.png │ │ ├── 4.imageset │ │ │ ├── Contents.json │ │ │ └── Screen Shot 2020-06-29 at 5.00.47 PM.png │ │ ├── 5.imageset │ │ │ ├── Contents.json │ │ │ └── Screen Shot 2020-06-29 at 5.02.45 PM.png │ │ ├── 6.imageset │ │ │ ├── Contents.json │ │ │ └── Screen Shot 2020-06-29 at 5.03.08 PM.png │ │ ├── 7.imageset │ │ │ ├── Contents.json │ │ │ └── Screen Shot 2020-06-29 at 5.05.17 PM.png │ │ └── Contents.json │ └── naruto │ │ ├── .DS_Store │ │ ├── Contents.json │ │ ├── itachi.imageset │ │ ├── Contents.json │ │ └── dd0jodu-e1eacac7-49b3-40e2-911b-a188f2cc41bf.png │ │ ├── naruto.imageset │ │ ├── Contents.json │ │ └── naru.png │ │ ├── pain.imageset │ │ ├── Contents.json │ │ └── pain_render.png │ │ └── sasuke.imageset │ │ ├── Contents.json │ │ └── sasu-removebg-preview.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Code │ ├── .DS_Store │ ├── Models │ │ ├── Colors.swift │ │ ├── Effect.swift │ │ ├── Tables.swift │ │ ├── Transitions.swift │ │ └── Tutorial.swift │ └── Modules │ │ ├── .DS_Store │ │ ├── Home │ │ ├── .DS_Store │ │ ├── Base.lproj │ │ │ └── Home.storyboard │ │ ├── Cells │ │ │ ├── EffectCollectionViewCell.swift │ │ │ ├── EffectCollectionViewCell.xib │ │ │ ├── MoreTableViewCell.swift │ │ │ ├── TutorialTableViewCell.swift │ │ │ └── TutorialTableViewCell.xib │ │ ├── EffectDetailsViewController.swift │ │ ├── HomeViewController.swift │ │ ├── IntroViewController.swift │ │ ├── MoreViewController.swift │ │ └── TextTypeViewController.swift │ │ ├── Transitions │ │ ├── ButtonViewController.swift │ │ ├── Cells │ │ │ ├── CharactersCollectionViewCell.swift │ │ │ ├── CharactersCollectionViewCell.xib │ │ │ ├── NoteTableViewCell.swift │ │ │ └── NoteTableViewCell.xib │ │ ├── CharactersViewController.swift │ │ ├── CircleViewController.swift │ │ ├── ColorViewController.swift │ │ ├── IntroExpandViewController.swift │ │ ├── RowTransitionViewController.swift │ │ └── Transition.storyboard │ │ └── Tutorials │ │ ├── .DS_Store │ │ ├── ButtonsViewController.swift │ │ ├── Cells │ │ ├── SnapCollectionViewCell.swift │ │ ├── SnapCollectionViewCell.xib │ │ ├── TableAnimationViewCell.swift │ │ └── TableAnimationViewCell.xib │ │ ├── CollectionTutorialViewController.swift │ │ ├── LoadersViewController.swift │ │ ├── TableAnimationViewController.swift │ │ ├── ToastViewController.swift │ │ └── Tutorial.storyboard ├── Components │ ├── BluetoothButton.swift │ ├── CodeSymbolView.swift │ ├── ExpandingButton.swift │ ├── ExpandingButtonsView.swift │ ├── RejectButton.swift │ ├── SubmitButton.swift │ ├── SuccessButton.swift │ ├── ToastView.swift │ └── WifiButton.swift ├── Effects │ ├── BluetoothEffects.swift │ ├── FailureEffects.swift │ ├── Logo.swift │ ├── PulseEffect.swift │ ├── ShimmerEffect.swift │ ├── SuccessEffects.swift │ └── WifiEffects.swift ├── Extensions │ ├── CAExtensions.swift │ ├── ColorExtensions.swift │ ├── FoundationExtensions.swift │ ├── UINibExtensions.swift │ └── ViewExtensions.swift ├── Fonts │ ├── Montserrat │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ └── Montserrat-Thin.ttf │ ├── MuseoModerno │ │ ├── MuseoModerno-Light.ttf │ │ ├── MuseoModerno-Medium.ttf │ │ ├── MuseoModerno-Regular.ttf │ │ └── MuseoModerno-SemiBold.ttf │ └── Raleway │ │ ├── Raleway-Black.ttf │ │ ├── Raleway-Bold.ttf │ │ ├── Raleway-Light.ttf │ │ ├── Raleway-Medium.ttf │ │ ├── Raleway-Regular.ttf │ │ ├── Raleway-SemiBold.ttf │ │ └── Raleway-Thin.ttf ├── Info.plist ├── Screenshots │ ├── .DS_Store │ ├── 1.png │ └── Others │ │ └── paypal_paym.png └── Transitions │ ├── CircleAnimator.swift │ ├── RowAnimator.swift │ └── ViewController.swift ├── CONTRIBUTING.md ├── LICENSE └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: shubham_iosdev 2 | -------------------------------------------------------------------------------- /.github/workflows/swift.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/.github/workflows/swift.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /Animatify.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Animatify.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Animatify.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Animatify.xcodeproj/project.xcworkspace/xcuserdata/shubham.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify.xcodeproj/project.xcworkspace/xcuserdata/shubham.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Animatify.xcodeproj/xcuserdata/shubham.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify.xcodeproj/xcuserdata/shubham.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Animatify.xcodeproj/xcuserdata/shubham.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify.xcodeproj/xcuserdata/shubham.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Animatify/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/.DS_Store -------------------------------------------------------------------------------- /Animatify/Animations/ButtonAnimations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Animations/ButtonAnimations.swift -------------------------------------------------------------------------------- /Animatify/Animations/CoreAnimations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Animations/CoreAnimations.swift -------------------------------------------------------------------------------- /Animatify/Animations/TableViewAnimations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Animations/TableViewAnimations.swift -------------------------------------------------------------------------------- /Animatify/Animations/UIViewAnimations.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Animations/UIViewAnimations.swift -------------------------------------------------------------------------------- /Animatify/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/AppDelegate.swift -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-20.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-20@2x-1.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-20@2x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-20@3x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-29.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-29@2x-1.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/AppIcon.appiconset/Icon-83_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/AppIcon.appiconset/Icon-83_5@2x.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/colors/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/colors/accentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/colors/accentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/colors/alternateBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/colors/alternateBackground.colorset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/colors/background.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/colors/background.colorset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/colors/label.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/colors/label.colorset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/1.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/1.imageset/Screen Shot 2020-06-29 at 4.58.54 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/1.imageset/Screen Shot 2020-06-29 at 4.58.54 PM.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/2.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/2.imageset/Screen Shot 2020-06-29 at 7.08.57 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/2.imageset/Screen Shot 2020-06-29 at 7.08.57 PM.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/3.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/3.imageset/Screen Shot 2020-06-29 at 5.00.13 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/3.imageset/Screen Shot 2020-06-29 at 5.00.13 PM.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/4.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/4.imageset/Screen Shot 2020-06-29 at 5.00.47 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/4.imageset/Screen Shot 2020-06-29 at 5.00.47 PM.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/5.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/5.imageset/Screen Shot 2020-06-29 at 5.02.45 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/5.imageset/Screen Shot 2020-06-29 at 5.02.45 PM.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/6.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/6.imageset/Screen Shot 2020-06-29 at 5.03.08 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/6.imageset/Screen Shot 2020-06-29 at 5.03.08 PM.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/7.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/7.imageset/Screen Shot 2020-06-29 at 5.05.17 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/7.imageset/Screen Shot 2020-06-29 at 5.05.17 PM.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/movies/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/movies/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/.DS_Store -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/itachi.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/itachi.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/itachi.imageset/dd0jodu-e1eacac7-49b3-40e2-911b-a188f2cc41bf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/itachi.imageset/dd0jodu-e1eacac7-49b3-40e2-911b-a188f2cc41bf.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/naruto.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/naruto.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/naruto.imageset/naru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/naruto.imageset/naru.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/pain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/pain.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/pain.imageset/pain_render.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/pain.imageset/pain_render.png -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/sasuke.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/sasuke.imageset/Contents.json -------------------------------------------------------------------------------- /Animatify/Assets.xcassets/naruto/sasuke.imageset/sasu-removebg-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Assets.xcassets/naruto/sasuke.imageset/sasu-removebg-preview.png -------------------------------------------------------------------------------- /Animatify/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Animatify/Code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/.DS_Store -------------------------------------------------------------------------------- /Animatify/Code/Models/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Models/Colors.swift -------------------------------------------------------------------------------- /Animatify/Code/Models/Effect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Models/Effect.swift -------------------------------------------------------------------------------- /Animatify/Code/Models/Tables.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Models/Tables.swift -------------------------------------------------------------------------------- /Animatify/Code/Models/Transitions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Models/Transitions.swift -------------------------------------------------------------------------------- /Animatify/Code/Models/Tutorial.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Models/Tutorial.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/.DS_Store -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/.DS_Store -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/Base.lproj/Home.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/Base.lproj/Home.storyboard -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/Cells/EffectCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/Cells/EffectCollectionViewCell.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/Cells/EffectCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/Cells/EffectCollectionViewCell.xib -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/Cells/MoreTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/Cells/MoreTableViewCell.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/Cells/TutorialTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/Cells/TutorialTableViewCell.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/Cells/TutorialTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/Cells/TutorialTableViewCell.xib -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/EffectDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/EffectDetailsViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/HomeViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/IntroViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/IntroViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/MoreViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/MoreViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Home/TextTypeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Home/TextTypeViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/ButtonViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/ButtonViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/Cells/CharactersCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/Cells/CharactersCollectionViewCell.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/Cells/CharactersCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/Cells/CharactersCollectionViewCell.xib -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/Cells/NoteTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/Cells/NoteTableViewCell.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/Cells/NoteTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/Cells/NoteTableViewCell.xib -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/CharactersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/CharactersViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/CircleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/CircleViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/ColorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/ColorViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/IntroExpandViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/IntroExpandViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/RowTransitionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/RowTransitionViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Transitions/Transition.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Transitions/Transition.storyboard -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/.DS_Store -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/ButtonsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/ButtonsViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/Cells/SnapCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/Cells/SnapCollectionViewCell.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/Cells/SnapCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/Cells/SnapCollectionViewCell.xib -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/Cells/TableAnimationViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/Cells/TableAnimationViewCell.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/Cells/TableAnimationViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/Cells/TableAnimationViewCell.xib -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/CollectionTutorialViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/CollectionTutorialViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/LoadersViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/LoadersViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/TableAnimationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/TableAnimationViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/ToastViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/ToastViewController.swift -------------------------------------------------------------------------------- /Animatify/Code/Modules/Tutorials/Tutorial.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Code/Modules/Tutorials/Tutorial.storyboard -------------------------------------------------------------------------------- /Animatify/Components/BluetoothButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/BluetoothButton.swift -------------------------------------------------------------------------------- /Animatify/Components/CodeSymbolView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/CodeSymbolView.swift -------------------------------------------------------------------------------- /Animatify/Components/ExpandingButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/ExpandingButton.swift -------------------------------------------------------------------------------- /Animatify/Components/ExpandingButtonsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/ExpandingButtonsView.swift -------------------------------------------------------------------------------- /Animatify/Components/RejectButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/RejectButton.swift -------------------------------------------------------------------------------- /Animatify/Components/SubmitButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/SubmitButton.swift -------------------------------------------------------------------------------- /Animatify/Components/SuccessButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/SuccessButton.swift -------------------------------------------------------------------------------- /Animatify/Components/ToastView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/ToastView.swift -------------------------------------------------------------------------------- /Animatify/Components/WifiButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Components/WifiButton.swift -------------------------------------------------------------------------------- /Animatify/Effects/BluetoothEffects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Effects/BluetoothEffects.swift -------------------------------------------------------------------------------- /Animatify/Effects/FailureEffects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Effects/FailureEffects.swift -------------------------------------------------------------------------------- /Animatify/Effects/Logo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Effects/Logo.swift -------------------------------------------------------------------------------- /Animatify/Effects/PulseEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Effects/PulseEffect.swift -------------------------------------------------------------------------------- /Animatify/Effects/ShimmerEffect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Effects/ShimmerEffect.swift -------------------------------------------------------------------------------- /Animatify/Effects/SuccessEffects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Effects/SuccessEffects.swift -------------------------------------------------------------------------------- /Animatify/Effects/WifiEffects.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Effects/WifiEffects.swift -------------------------------------------------------------------------------- /Animatify/Extensions/CAExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Extensions/CAExtensions.swift -------------------------------------------------------------------------------- /Animatify/Extensions/ColorExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Extensions/ColorExtensions.swift -------------------------------------------------------------------------------- /Animatify/Extensions/FoundationExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Extensions/FoundationExtensions.swift -------------------------------------------------------------------------------- /Animatify/Extensions/UINibExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Extensions/UINibExtensions.swift -------------------------------------------------------------------------------- /Animatify/Extensions/ViewExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Extensions/ViewExtensions.swift -------------------------------------------------------------------------------- /Animatify/Fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/MuseoModerno/MuseoModerno-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/MuseoModerno/MuseoModerno-Light.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/MuseoModerno/MuseoModerno-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/MuseoModerno/MuseoModerno-Medium.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/MuseoModerno/MuseoModerno-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/MuseoModerno/MuseoModerno-Regular.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/MuseoModerno/MuseoModerno-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/MuseoModerno/MuseoModerno-SemiBold.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Raleway/Raleway-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Raleway/Raleway-Black.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Raleway/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Raleway/Raleway-Bold.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Raleway/Raleway-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Raleway/Raleway-Light.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Raleway/Raleway-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Raleway/Raleway-Medium.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Raleway/Raleway-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Raleway/Raleway-Regular.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Raleway/Raleway-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Raleway/Raleway-SemiBold.ttf -------------------------------------------------------------------------------- /Animatify/Fonts/Raleway/Raleway-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Fonts/Raleway/Raleway-Thin.ttf -------------------------------------------------------------------------------- /Animatify/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Info.plist -------------------------------------------------------------------------------- /Animatify/Screenshots/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Screenshots/.DS_Store -------------------------------------------------------------------------------- /Animatify/Screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Screenshots/1.png -------------------------------------------------------------------------------- /Animatify/Screenshots/Others/paypal_paym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Screenshots/Others/paypal_paym.png -------------------------------------------------------------------------------- /Animatify/Transitions/CircleAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Transitions/CircleAnimator.swift -------------------------------------------------------------------------------- /Animatify/Transitions/RowAnimator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Transitions/RowAnimator.swift -------------------------------------------------------------------------------- /Animatify/Transitions/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/Animatify/Transitions/ViewController.swift -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shubham0812/Animatify-ios/HEAD/README.md --------------------------------------------------------------------------------