├── .gitignore ├── AnimatedTabBar.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── davidmartinez.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── AnimatedTabBar ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── BubbleTabBar │ └── BubbleTabBar.swift ├── Info.plist ├── SceneDelegate.swift └── ViewController.swift ├── LICENSE ├── README.md └── docs └── tabbar-result.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/.gitignore -------------------------------------------------------------------------------- /AnimatedTabBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AnimatedTabBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AnimatedTabBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /AnimatedTabBar.xcodeproj/xcuserdata/davidmartinez.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar.xcodeproj/xcuserdata/davidmartinez.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AnimatedTabBar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/AppDelegate.swift -------------------------------------------------------------------------------- /AnimatedTabBar/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /AnimatedTabBar/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AnimatedTabBar/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /AnimatedTabBar/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AnimatedTabBar/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AnimatedTabBar/BubbleTabBar/BubbleTabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/BubbleTabBar/BubbleTabBar.swift -------------------------------------------------------------------------------- /AnimatedTabBar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/Info.plist -------------------------------------------------------------------------------- /AnimatedTabBar/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/SceneDelegate.swift -------------------------------------------------------------------------------- /AnimatedTabBar/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/AnimatedTabBar/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/README.md -------------------------------------------------------------------------------- /docs/tabbar-result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daviwiki/medium-animatedtabbar/HEAD/docs/tabbar-result.gif --------------------------------------------------------------------------------