gitextract_02zc56kq/ ├── .gitignore ├── Example/ │ ├── MiniTabBar/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── tab1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── tab2.imageset/ │ │ │ │ └── Contents.json │ │ │ └── tab3.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── MiniTabBar.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── MiniTabBar-Example.xcscheme │ ├── MiniTabBar.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ └── Tests/ │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── MiniTabBar/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── MiniTabBar.swift │ └── MiniTabBarItemView.swift ├── MiniTabBar.podspec └── README.md