gitextract_ddp4f3bc/ ├── .gitignore ├── .travis.yml ├── Example/ │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── SSCustomTabbar.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Target Support Files/ │ │ ├── Pods-SSCustomTabbar_Example/ │ │ │ ├── Pods-SSCustomTabbar_Example-Info.plist │ │ │ ├── Pods-SSCustomTabbar_Example-acknowledgements.markdown │ │ │ ├── Pods-SSCustomTabbar_Example-acknowledgements.plist │ │ │ ├── Pods-SSCustomTabbar_Example-dummy.m │ │ │ ├── Pods-SSCustomTabbar_Example-frameworks.sh │ │ │ ├── Pods-SSCustomTabbar_Example-umbrella.h │ │ │ ├── Pods-SSCustomTabbar_Example.debug.xcconfig │ │ │ ├── Pods-SSCustomTabbar_Example.modulemap │ │ │ └── Pods-SSCustomTabbar_Example.release.xcconfig │ │ ├── Pods-SSCustomTabbar_Tests/ │ │ │ ├── Pods-SSCustomTabbar_Tests-Info.plist │ │ │ ├── Pods-SSCustomTabbar_Tests-acknowledgements.markdown │ │ │ ├── Pods-SSCustomTabbar_Tests-acknowledgements.plist │ │ │ ├── Pods-SSCustomTabbar_Tests-dummy.m │ │ │ ├── Pods-SSCustomTabbar_Tests-umbrella.h │ │ │ ├── Pods-SSCustomTabbar_Tests.debug.xcconfig │ │ │ ├── Pods-SSCustomTabbar_Tests.modulemap │ │ │ └── Pods-SSCustomTabbar_Tests.release.xcconfig │ │ └── SSCustomTabbar/ │ │ ├── SSCustomTabbar-Info.plist │ │ ├── SSCustomTabbar-dummy.m │ │ ├── SSCustomTabbar-prefix.pch │ │ ├── SSCustomTabbar-umbrella.h │ │ ├── SSCustomTabbar.modulemap │ │ └── SSCustomTabbar.xcconfig │ ├── SSCustomTabbar/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── iconChat.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iconChatSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iconFavorite.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iconFavoriteSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iconHome.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iconHomeSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iconProfile.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iconProfileSelected.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── iconVideo.imageset/ │ │ │ │ └── Contents.json │ │ │ └── iconVideoSelected.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── Main.storyboard │ │ └── ViewController.swift │ ├── SSCustomTabbar.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── SSCustomTabbar-Example.xcscheme │ ├── SSCustomTabbar.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── Tests/ │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Package.swift ├── README.md ├── SSCustomTabBar/ │ ├── Assets/ │ │ └── .gitkeep │ ├── Classes/ │ │ ├── .gitkeep │ │ ├── Declration&Constants.swift │ │ ├── SSCustomTabBar.swift │ │ ├── SSCustomTabBarViewController.swift │ │ ├── SwiftUITabbar.swift │ │ └── UIView+Extenstion.swift │ ├── SSCustomTabBar.xcodeproj/ │ │ └── project.xcworkspace/ │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── IDEWorkspaceChecks.plist │ └── SwiftUI/ │ └── SwiftUISupport.storyboard ├── SSCustomTabbar.podspec └── SwiftUI Example/ ├── Podfile ├── SwiftUIExample/ │ ├── AppDelegate.swift │ ├── Assets.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── iconChat.imageset/ │ │ │ └── Contents.json │ │ ├── iconChatSelected.imageset/ │ │ │ └── Contents.json │ │ ├── iconFavorite.imageset/ │ │ │ └── Contents.json │ │ ├── iconFavoriteSelected.imageset/ │ │ │ └── Contents.json │ │ ├── iconHome.imageset/ │ │ │ └── Contents.json │ │ ├── iconHomeSelected.imageset/ │ │ │ └── Contents.json │ │ ├── iconProfile.imageset/ │ │ │ └── Contents.json │ │ ├── iconProfileSelected.imageset/ │ │ │ └── Contents.json │ │ ├── iconVideo.imageset/ │ │ │ └── Contents.json │ │ └── iconVideoSelected.imageset/ │ │ └── Contents.json │ ├── Base.lproj/ │ │ └── LaunchScreen.storyboard │ ├── ContentView.swift │ ├── Info.plist │ ├── Preview Content/ │ │ └── Preview Assets.xcassets/ │ │ └── Contents.json │ └── SceneDelegate.swift ├── SwiftUIExample.xcodeproj/ │ ├── project.pbxproj │ └── project.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ └── IDEWorkspaceChecks.plist └── SwiftUIExample.xcworkspace/ ├── contents.xcworkspacedata └── xcshareddata/ └── IDEWorkspaceChecks.plist