├── README.md ├── ScrollableTabbar.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── apple.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── ScrollableTabbar ├── AppDelegate.swift ├── Base.lproj ├── LaunchScreen.storyboard └── Main.storyboard ├── DGScrollableSegmentControl.swift ├── DGSpringButton.swift ├── Info.plist └── ViewController.swift /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/README.md -------------------------------------------------------------------------------- /ScrollableTabbar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScrollableTabbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScrollableTabbar.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar.xcodeproj/xcuserdata/apple.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ScrollableTabbar.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar.xcodeproj/xcuserdata/apple.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ScrollableTabbar/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar/AppDelegate.swift -------------------------------------------------------------------------------- /ScrollableTabbar/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ScrollableTabbar/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ScrollableTabbar/DGScrollableSegmentControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar/DGScrollableSegmentControl.swift -------------------------------------------------------------------------------- /ScrollableTabbar/DGSpringButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar/DGSpringButton.swift -------------------------------------------------------------------------------- /ScrollableTabbar/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar/Info.plist -------------------------------------------------------------------------------- /ScrollableTabbar/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dipkasyap/DGScrollableSegmentControl/HEAD/ScrollableTabbar/ViewController.swift --------------------------------------------------------------------------------