├── SwiftUITabBat ├── Assets.xcassets │ ├── Contents.json │ └── AppIcon.appiconset │ │ └── Contents.json ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json ├── BottomBarItem.swift ├── BottomBarItemView.swift ├── AppDelegate.swift ├── Base.lproj │ └── LaunchScreen.storyboard ├── BottomBar.swift ├── Info.plist ├── ContentView.swift └── SceneDelegate.swift ├── SwiftUI_Custom TabBar.gif ├── README.md └── SwiftUITabBar.xcodeproj ├── project.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── xcuserdata └── bhaveshchavda.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── project.pbxproj /SwiftUITabBat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /SwiftUI_Custom TabBar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Comrade-SwiftUI/SwiftUI-Custom-Tab-Bar/HEAD/SwiftUI_Custom TabBar.gif -------------------------------------------------------------------------------- /SwiftUITabBat/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SwiftUI-Custom-Tab-Bar 2 | Custom tab bar with navigation controller using SwiftUI 3 | 4 | 5 | -------------------------------------------------------------------------------- /SwiftUITabBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SwiftUITabBar.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /SwiftUITabBat/BottomBarItem.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BottomBarItem.swift 3 | // BottomBar 4 | // 5 | // Created by Bhavesh Chavda on 21/01/20. 6 | // Copyright © 2020 BhaveshChavda. All rights reserved. 7 | // 8 | 9 | 10 | import SwiftUI 11 | 12 | public struct BottomBarItem { 13 | public let icon: String 14 | public let title: String 15 | public let color: Color 16 | 17 | public init(icon: String, 18 | title: String, 19 | color: Color) { 20 | self.icon = icon 21 | self.title = title 22 | self.color = color 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /SwiftUITabBar.xcodeproj/xcuserdata/bhaveshchavda.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SwiftUITabBar.xcscheme_^#shared#^_ 8 | 9 | orderHint 10 | 0 11 | 12 | SwiftUITabBat.xcscheme_^#shared#^_ 13 | 14 | orderHint 15 | 0 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /SwiftUITabBat/BottomBarItemView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BottomBarItemView.swift 3 | // BottomBar 4 | // 5 | // Created by Bhavesh Chavda on 21/01/20. 6 | // Copyright © 2020 BhaveshChavda. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | public struct BottomBarItemView: View { 12 | public let isSelected: Bool 13 | public let item: BottomBarItem 14 | 15 | public var body: some View { 16 | HStack { 17 | Image(systemName: item.icon) 18 | .imageScale(.large) 19 | .foregroundColor(isSelected ? item.color : .primary) 20 | 21 | if isSelected { 22 | Text(item.title) 23 | .foregroundColor(item.color) 24 | .fontWeight(/*@START_MENU_TOKEN@*/.bold/*@END_MENU_TOKEN@*/) 25 | } 26 | } 27 | .padding() 28 | .background( 29 | Capsule() 30 | .fill(isSelected ? item.color.opacity(0.2) : Color.clear) 31 | ) 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /SwiftUITabBat/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SwiftUITabBat 4 | // 5 | // Created by Bhavesh Chavda on 21/01/20. 6 | // Copyright © 2020 BhaveshChavda. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | 15 | 16 | func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 17 | // Override point for customization after application launch. 18 | return true 19 | } 20 | 21 | // MARK: UISceneSession Lifecycle 22 | 23 | func application(_ application: UIApplication, configurationForConnecting connectingSceneSession: UISceneSession, options: UIScene.ConnectionOptions) -> UISceneConfiguration { 24 | // Called when a new scene session is being created. 25 | // Use this method to select a configuration to create the new scene with. 26 | return UISceneConfiguration(name: "Default Configuration", sessionRole: connectingSceneSession.role) 27 | } 28 | 29 | func application(_ application: UIApplication, didDiscardSceneSessions sceneSessions: Set) { 30 | // Called when the user discards a scene session. 31 | // If any sessions were discarded while the application was not running, this will be called shortly after application:didFinishLaunchingWithOptions. 32 | // Use this method to release any resources that were specific to the discarded scenes, as they will not return. 33 | } 34 | 35 | 36 | } 37 | 38 | -------------------------------------------------------------------------------- /SwiftUITabBat/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /SwiftUITabBat/BottomBar.swift: -------------------------------------------------------------------------------- 1 | // 2 | // BottomBar.swift 3 | // BottomBar 4 | // 5 | // Created by Bhavesh Chavda on 21/01/20. 6 | // Copyright © 2020 BhaveshChavda. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | public struct BottomBar : View { 12 | @Binding public var selectedIndex: Int 13 | 14 | public let items: [BottomBarItem] 15 | 16 | public init(selectedIndex: Binding, items: [BottomBarItem]) { 17 | self._selectedIndex = selectedIndex 18 | self.items = items 19 | } 20 | 21 | func itemView(at index: Int) -> some View { 22 | Button(action: { 23 | withAnimation { self.selectedIndex = index } 24 | }) { 25 | BottomBarItemView(isSelected: index == selectedIndex, item: items[index]) 26 | } 27 | } 28 | 29 | public var body: some View { 30 | HStack(alignment: .bottom) { 31 | ForEach(0.. 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | $(PRODUCT_BUNDLE_PACKAGE_TYPE) 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleVersion 20 | 1 21 | LSRequiresIPhoneOS 22 | 23 | UIApplicationSceneManifest 24 | 25 | UIApplicationSupportsMultipleScenes 26 | 27 | UISceneConfigurations 28 | 29 | UIWindowSceneSessionRoleApplication 30 | 31 | 32 | UISceneConfigurationName 33 | Default Configuration 34 | UISceneDelegateClassName 35 | $(PRODUCT_MODULE_NAME).SceneDelegate 36 | 37 | 38 | 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIRequiredDeviceCapabilities 43 | 44 | armv7 45 | 46 | UIStatusBarStyle 47 | UIStatusBarStyleLightContent 48 | UISupportedInterfaceOrientations 49 | 50 | UIInterfaceOrientationPortrait 51 | 52 | UISupportedInterfaceOrientations~ipad 53 | 54 | UIInterfaceOrientationPortrait 55 | UIInterfaceOrientationPortraitUpsideDown 56 | UIInterfaceOrientationLandscapeLeft 57 | UIInterfaceOrientationLandscapeRight 58 | 59 | UIUserInterfaceStyle 60 | Light 61 | UIViewControllerBasedStatusBarAppearance 62 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /SwiftUITabBat/ContentView.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ContentView.swift 3 | // SwiftUITabBat 4 | // 5 | // Created by Bhavesh Chavda on 21/01/20. 6 | // Copyright © 2020 BhaveshChavda. All rights reserved. 7 | // 8 | 9 | import SwiftUI 10 | 11 | 12 | let items: [BottomBarItem] = [ 13 | BottomBarItem(icon: "house.fill", title: "Home", color: .purple), 14 | BottomBarItem(icon: "heart", title: "Likes", color: .pink), 15 | BottomBarItem(icon: "magnifyingglass", title: "Search", color: .orange), 16 | BottomBarItem(icon: "person.fill", title: "Profile", color: .blue) 17 | ] 18 | 19 | struct BasicView: View { 20 | let item: BottomBarItem 21 | var detailText: String { 22 | "\(item.title) Detail" 23 | } 24 | 25 | var destination: some View { 26 | Text(detailText) 27 | .navigationBarTitle(Text(detailText)) 28 | } 29 | 30 | var navigateButton: some View { 31 | NavigationLink(destination: destination) { 32 | ZStack { 33 | Rectangle() 34 | .fill(item.color) 35 | .cornerRadius(8) 36 | .frame(height: 52) 37 | .padding(.horizontal) 38 | 39 | Text("Navigate") 40 | .font(.headline) 41 | .foregroundColor(.white) 42 | } 43 | } 44 | } 45 | 46 | func openTwitter() { 47 | guard let url = URL(string: "https://twitter.com/smartvipere75") else { 48 | return 49 | } 50 | UIApplication.shared.open(url, options: [:], completionHandler: nil) 51 | } 52 | 53 | var body: some View { 54 | VStack { 55 | Spacer() 56 | Spacer() 57 | } 58 | } 59 | } 60 | 61 | struct ContentView : View { 62 | @State private var selectedIndex: Int = 0 63 | 64 | init() { 65 | UINavigationBar.appearance().largeTitleTextAttributes = [.foregroundColor: UIColor.white] 66 | } 67 | 68 | var selectedItem: BottomBarItem { 69 | items[selectedIndex] 70 | } 71 | 72 | var body: some View { 73 | NavigationView { 74 | VStack { 75 | //change the navbar color 76 | Rectangle() 77 | .foregroundColor(selectedItem.color) 78 | .edgesIgnoringSafeArea(.top) 79 | .frame(height: 0) 80 | .navigationBarHidden(false) 81 | 82 | BasicView(item: selectedItem) 83 | .navigationBarTitle(Text(selectedItem.title)) 84 | BottomBar(selectedIndex: $selectedIndex, items: items) 85 | } 86 | } 87 | } 88 | } 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /SwiftUITabBat/SceneDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SceneDelegate.swift 3 | // SwiftUITabBat 4 | // 5 | // Created by Bhavesh Chavda on 21/01/20. 6 | // Copyright © 2020 BhaveshChavda. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import SwiftUI 11 | 12 | class SceneDelegate: UIResponder, UIWindowSceneDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { 18 | // Use this method to optionally configure and attach the UIWindow `window` to the provided UIWindowScene `scene`. 19 | // If using a storyboard, the `window` property will automatically be initialized and attached to the scene. 20 | // This delegate does not imply the connecting scene or session are new (see `application:configurationForConnectingSceneSession` instead). 21 | 22 | // Create the SwiftUI view that provides the window contents. 23 | let contentView = ContentView() 24 | 25 | // Use a UIHostingController as window root view controller. 26 | if let windowScene = scene as? UIWindowScene { 27 | let window = UIWindow(windowScene: windowScene) 28 | window.rootViewController = UIHostingController(rootView: contentView) 29 | self.window = window 30 | window.makeKeyAndVisible() 31 | } 32 | } 33 | 34 | func sceneDidDisconnect(_ scene: UIScene) { 35 | // Called as the scene is being released by the system. 36 | // This occurs shortly after the scene enters the background, or when its session is discarded. 37 | // Release any resources associated with this scene that can be re-created the next time the scene connects. 38 | // The scene may re-connect later, as its session was not neccessarily discarded (see `application:didDiscardSceneSessions` instead). 39 | } 40 | 41 | func sceneDidBecomeActive(_ scene: UIScene) { 42 | // Called when the scene has moved from an inactive state to an active state. 43 | // Use this method to restart any tasks that were paused (or not yet started) when the scene was inactive. 44 | } 45 | 46 | func sceneWillResignActive(_ scene: UIScene) { 47 | // Called when the scene will move from an active state to an inactive state. 48 | // This may occur due to temporary interruptions (ex. an incoming phone call). 49 | } 50 | 51 | func sceneWillEnterForeground(_ scene: UIScene) { 52 | // Called as the scene transitions from the background to the foreground. 53 | // Use this method to undo the changes made on entering the background. 54 | } 55 | 56 | func sceneDidEnterBackground(_ scene: UIScene) { 57 | // Called as the scene transitions from the foreground to the background. 58 | // Use this method to save data, release shared resources, and store enough scene-specific state information 59 | // to restore the scene back to its current state. 60 | } 61 | 62 | 63 | } 64 | 65 | -------------------------------------------------------------------------------- /SwiftUITabBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 50; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 0CFAC19F23D6CE8C00C73E88 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CFAC19E23D6CE8C00C73E88 /* AppDelegate.swift */; }; 11 | 0CFAC1A123D6CE8C00C73E88 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CFAC1A023D6CE8C00C73E88 /* SceneDelegate.swift */; }; 12 | 0CFAC1A323D6CE8C00C73E88 /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CFAC1A223D6CE8C00C73E88 /* ContentView.swift */; }; 13 | 0CFAC1A523D6CE8D00C73E88 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0CFAC1A423D6CE8D00C73E88 /* Assets.xcassets */; }; 14 | 0CFAC1A823D6CE8D00C73E88 /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 0CFAC1A723D6CE8D00C73E88 /* Preview Assets.xcassets */; }; 15 | 0CFAC1AB23D6CE8D00C73E88 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 0CFAC1A923D6CE8D00C73E88 /* LaunchScreen.storyboard */; }; 16 | 0CFAC1B523D6CF3900C73E88 /* BottomBarItemView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CFAC1B223D6CF3900C73E88 /* BottomBarItemView.swift */; }; 17 | 0CFAC1B623D6CF3900C73E88 /* BottomBarItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CFAC1B323D6CF3900C73E88 /* BottomBarItem.swift */; }; 18 | 0CFAC1B723D6CF3900C73E88 /* BottomBar.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CFAC1B423D6CF3900C73E88 /* BottomBar.swift */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXFileReference section */ 22 | 0CFAC19B23D6CE8C00C73E88 /* SwiftUITabBar.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SwiftUITabBar.app; sourceTree = BUILT_PRODUCTS_DIR; }; 23 | 0CFAC19E23D6CE8C00C73E88 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 24 | 0CFAC1A023D6CE8C00C73E88 /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = ""; }; 25 | 0CFAC1A223D6CE8C00C73E88 /* ContentView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContentView.swift; sourceTree = ""; }; 26 | 0CFAC1A423D6CE8D00C73E88 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 27 | 0CFAC1A723D6CE8D00C73E88 /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = ""; }; 28 | 0CFAC1AA23D6CE8D00C73E88 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 29 | 0CFAC1AC23D6CE8D00C73E88 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 30 | 0CFAC1B223D6CF3900C73E88 /* BottomBarItemView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BottomBarItemView.swift; sourceTree = ""; }; 31 | 0CFAC1B323D6CF3900C73E88 /* BottomBarItem.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BottomBarItem.swift; sourceTree = ""; }; 32 | 0CFAC1B423D6CF3900C73E88 /* BottomBar.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BottomBar.swift; sourceTree = ""; }; 33 | /* End PBXFileReference section */ 34 | 35 | /* Begin PBXFrameworksBuildPhase section */ 36 | 0CFAC19823D6CE8C00C73E88 /* Frameworks */ = { 37 | isa = PBXFrameworksBuildPhase; 38 | buildActionMask = 2147483647; 39 | files = ( 40 | ); 41 | runOnlyForDeploymentPostprocessing = 0; 42 | }; 43 | /* End PBXFrameworksBuildPhase section */ 44 | 45 | /* Begin PBXGroup section */ 46 | 0CFAC19223D6CE8C00C73E88 = { 47 | isa = PBXGroup; 48 | children = ( 49 | 0CFAC19D23D6CE8C00C73E88 /* SwiftUITabBat */, 50 | 0CFAC19C23D6CE8C00C73E88 /* Products */, 51 | ); 52 | sourceTree = ""; 53 | }; 54 | 0CFAC19C23D6CE8C00C73E88 /* Products */ = { 55 | isa = PBXGroup; 56 | children = ( 57 | 0CFAC19B23D6CE8C00C73E88 /* SwiftUITabBar.app */, 58 | ); 59 | name = Products; 60 | sourceTree = ""; 61 | }; 62 | 0CFAC19D23D6CE8C00C73E88 /* SwiftUITabBat */ = { 63 | isa = PBXGroup; 64 | children = ( 65 | 0CFAC19E23D6CE8C00C73E88 /* AppDelegate.swift */, 66 | 0CFAC1A023D6CE8C00C73E88 /* SceneDelegate.swift */, 67 | 0CFAC1A223D6CE8C00C73E88 /* ContentView.swift */, 68 | 0CFAC1B423D6CF3900C73E88 /* BottomBar.swift */, 69 | 0CFAC1B323D6CF3900C73E88 /* BottomBarItem.swift */, 70 | 0CFAC1B223D6CF3900C73E88 /* BottomBarItemView.swift */, 71 | 0CFAC1A423D6CE8D00C73E88 /* Assets.xcassets */, 72 | 0CFAC1A923D6CE8D00C73E88 /* LaunchScreen.storyboard */, 73 | 0CFAC1AC23D6CE8D00C73E88 /* Info.plist */, 74 | 0CFAC1A623D6CE8D00C73E88 /* Preview Content */, 75 | ); 76 | path = SwiftUITabBat; 77 | sourceTree = ""; 78 | }; 79 | 0CFAC1A623D6CE8D00C73E88 /* Preview Content */ = { 80 | isa = PBXGroup; 81 | children = ( 82 | 0CFAC1A723D6CE8D00C73E88 /* Preview Assets.xcassets */, 83 | ); 84 | path = "Preview Content"; 85 | sourceTree = ""; 86 | }; 87 | /* End PBXGroup section */ 88 | 89 | /* Begin PBXNativeTarget section */ 90 | 0CFAC19A23D6CE8C00C73E88 /* SwiftUITabBar */ = { 91 | isa = PBXNativeTarget; 92 | buildConfigurationList = 0CFAC1AF23D6CE8D00C73E88 /* Build configuration list for PBXNativeTarget "SwiftUITabBar" */; 93 | buildPhases = ( 94 | 0CFAC19723D6CE8C00C73E88 /* Sources */, 95 | 0CFAC19823D6CE8C00C73E88 /* Frameworks */, 96 | 0CFAC19923D6CE8C00C73E88 /* Resources */, 97 | ); 98 | buildRules = ( 99 | ); 100 | dependencies = ( 101 | ); 102 | name = SwiftUITabBar; 103 | productName = SwiftUITabBat; 104 | productReference = 0CFAC19B23D6CE8C00C73E88 /* SwiftUITabBar.app */; 105 | productType = "com.apple.product-type.application"; 106 | }; 107 | /* End PBXNativeTarget section */ 108 | 109 | /* Begin PBXProject section */ 110 | 0CFAC19323D6CE8C00C73E88 /* Project object */ = { 111 | isa = PBXProject; 112 | attributes = { 113 | LastSwiftUpdateCheck = 1130; 114 | LastUpgradeCheck = 1130; 115 | ORGANIZATIONNAME = BhaveshChavda; 116 | TargetAttributes = { 117 | 0CFAC19A23D6CE8C00C73E88 = { 118 | CreatedOnToolsVersion = 11.3.1; 119 | }; 120 | }; 121 | }; 122 | buildConfigurationList = 0CFAC19623D6CE8C00C73E88 /* Build configuration list for PBXProject "SwiftUITabBar" */; 123 | compatibilityVersion = "Xcode 9.3"; 124 | developmentRegion = en; 125 | hasScannedForEncodings = 0; 126 | knownRegions = ( 127 | en, 128 | Base, 129 | ); 130 | mainGroup = 0CFAC19223D6CE8C00C73E88; 131 | productRefGroup = 0CFAC19C23D6CE8C00C73E88 /* Products */; 132 | projectDirPath = ""; 133 | projectRoot = ""; 134 | targets = ( 135 | 0CFAC19A23D6CE8C00C73E88 /* SwiftUITabBar */, 136 | ); 137 | }; 138 | /* End PBXProject section */ 139 | 140 | /* Begin PBXResourcesBuildPhase section */ 141 | 0CFAC19923D6CE8C00C73E88 /* Resources */ = { 142 | isa = PBXResourcesBuildPhase; 143 | buildActionMask = 2147483647; 144 | files = ( 145 | 0CFAC1AB23D6CE8D00C73E88 /* LaunchScreen.storyboard in Resources */, 146 | 0CFAC1A823D6CE8D00C73E88 /* Preview Assets.xcassets in Resources */, 147 | 0CFAC1A523D6CE8D00C73E88 /* Assets.xcassets in Resources */, 148 | ); 149 | runOnlyForDeploymentPostprocessing = 0; 150 | }; 151 | /* End PBXResourcesBuildPhase section */ 152 | 153 | /* Begin PBXSourcesBuildPhase section */ 154 | 0CFAC19723D6CE8C00C73E88 /* Sources */ = { 155 | isa = PBXSourcesBuildPhase; 156 | buildActionMask = 2147483647; 157 | files = ( 158 | 0CFAC19F23D6CE8C00C73E88 /* AppDelegate.swift in Sources */, 159 | 0CFAC1A123D6CE8C00C73E88 /* SceneDelegate.swift in Sources */, 160 | 0CFAC1B723D6CF3900C73E88 /* BottomBar.swift in Sources */, 161 | 0CFAC1B523D6CF3900C73E88 /* BottomBarItemView.swift in Sources */, 162 | 0CFAC1B623D6CF3900C73E88 /* BottomBarItem.swift in Sources */, 163 | 0CFAC1A323D6CE8C00C73E88 /* ContentView.swift in Sources */, 164 | ); 165 | runOnlyForDeploymentPostprocessing = 0; 166 | }; 167 | /* End PBXSourcesBuildPhase section */ 168 | 169 | /* Begin PBXVariantGroup section */ 170 | 0CFAC1A923D6CE8D00C73E88 /* LaunchScreen.storyboard */ = { 171 | isa = PBXVariantGroup; 172 | children = ( 173 | 0CFAC1AA23D6CE8D00C73E88 /* Base */, 174 | ); 175 | name = LaunchScreen.storyboard; 176 | sourceTree = ""; 177 | }; 178 | /* End PBXVariantGroup section */ 179 | 180 | /* Begin XCBuildConfiguration section */ 181 | 0CFAC1AD23D6CE8D00C73E88 /* Debug */ = { 182 | isa = XCBuildConfiguration; 183 | buildSettings = { 184 | ALWAYS_SEARCH_USER_PATHS = NO; 185 | CLANG_ANALYZER_NONNULL = YES; 186 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 187 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 188 | CLANG_CXX_LIBRARY = "libc++"; 189 | CLANG_ENABLE_MODULES = YES; 190 | CLANG_ENABLE_OBJC_ARC = YES; 191 | CLANG_ENABLE_OBJC_WEAK = YES; 192 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 193 | CLANG_WARN_BOOL_CONVERSION = YES; 194 | CLANG_WARN_COMMA = YES; 195 | CLANG_WARN_CONSTANT_CONVERSION = YES; 196 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 197 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 198 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 199 | CLANG_WARN_EMPTY_BODY = YES; 200 | CLANG_WARN_ENUM_CONVERSION = YES; 201 | CLANG_WARN_INFINITE_RECURSION = YES; 202 | CLANG_WARN_INT_CONVERSION = YES; 203 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 204 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 205 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 206 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 207 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 208 | CLANG_WARN_STRICT_PROTOTYPES = YES; 209 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 210 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 211 | CLANG_WARN_UNREACHABLE_CODE = YES; 212 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 213 | COPY_PHASE_STRIP = NO; 214 | DEBUG_INFORMATION_FORMAT = dwarf; 215 | ENABLE_STRICT_OBJC_MSGSEND = YES; 216 | ENABLE_TESTABILITY = YES; 217 | GCC_C_LANGUAGE_STANDARD = gnu11; 218 | GCC_DYNAMIC_NO_PIC = NO; 219 | GCC_NO_COMMON_BLOCKS = YES; 220 | GCC_OPTIMIZATION_LEVEL = 0; 221 | GCC_PREPROCESSOR_DEFINITIONS = ( 222 | "DEBUG=1", 223 | "$(inherited)", 224 | ); 225 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 226 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 227 | GCC_WARN_UNDECLARED_SELECTOR = YES; 228 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 229 | GCC_WARN_UNUSED_FUNCTION = YES; 230 | GCC_WARN_UNUSED_VARIABLE = YES; 231 | IPHONEOS_DEPLOYMENT_TARGET = 13.2; 232 | MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; 233 | MTL_FAST_MATH = YES; 234 | ONLY_ACTIVE_ARCH = YES; 235 | SDKROOT = iphoneos; 236 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; 237 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 238 | }; 239 | name = Debug; 240 | }; 241 | 0CFAC1AE23D6CE8D00C73E88 /* Release */ = { 242 | isa = XCBuildConfiguration; 243 | buildSettings = { 244 | ALWAYS_SEARCH_USER_PATHS = NO; 245 | CLANG_ANALYZER_NONNULL = YES; 246 | CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; 247 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; 248 | CLANG_CXX_LIBRARY = "libc++"; 249 | CLANG_ENABLE_MODULES = YES; 250 | CLANG_ENABLE_OBJC_ARC = YES; 251 | CLANG_ENABLE_OBJC_WEAK = YES; 252 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; 253 | CLANG_WARN_BOOL_CONVERSION = YES; 254 | CLANG_WARN_COMMA = YES; 255 | CLANG_WARN_CONSTANT_CONVERSION = YES; 256 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; 257 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 258 | CLANG_WARN_DOCUMENTATION_COMMENTS = YES; 259 | CLANG_WARN_EMPTY_BODY = YES; 260 | CLANG_WARN_ENUM_CONVERSION = YES; 261 | CLANG_WARN_INFINITE_RECURSION = YES; 262 | CLANG_WARN_INT_CONVERSION = YES; 263 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; 264 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; 265 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; 266 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 267 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; 268 | CLANG_WARN_STRICT_PROTOTYPES = YES; 269 | CLANG_WARN_SUSPICIOUS_MOVE = YES; 270 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; 271 | CLANG_WARN_UNREACHABLE_CODE = YES; 272 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 273 | COPY_PHASE_STRIP = NO; 274 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 275 | ENABLE_NS_ASSERTIONS = NO; 276 | ENABLE_STRICT_OBJC_MSGSEND = YES; 277 | GCC_C_LANGUAGE_STANDARD = gnu11; 278 | GCC_NO_COMMON_BLOCKS = YES; 279 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 280 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 281 | GCC_WARN_UNDECLARED_SELECTOR = YES; 282 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 283 | GCC_WARN_UNUSED_FUNCTION = YES; 284 | GCC_WARN_UNUSED_VARIABLE = YES; 285 | IPHONEOS_DEPLOYMENT_TARGET = 13.2; 286 | MTL_ENABLE_DEBUG_INFO = NO; 287 | MTL_FAST_MATH = YES; 288 | SDKROOT = iphoneos; 289 | SWIFT_COMPILATION_MODE = wholemodule; 290 | SWIFT_OPTIMIZATION_LEVEL = "-O"; 291 | VALIDATE_PRODUCT = YES; 292 | }; 293 | name = Release; 294 | }; 295 | 0CFAC1B023D6CE8D00C73E88 /* Debug */ = { 296 | isa = XCBuildConfiguration; 297 | buildSettings = { 298 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 299 | CODE_SIGN_STYLE = Automatic; 300 | DEVELOPMENT_ASSET_PATHS = "\"SwiftUITabBat/Preview Content\""; 301 | DEVELOPMENT_TEAM = 4P9J52TBT2; 302 | ENABLE_PREVIEWS = YES; 303 | INFOPLIST_FILE = SwiftUITabBat/Info.plist; 304 | LD_RUNPATH_SEARCH_PATHS = ( 305 | "$(inherited)", 306 | "@executable_path/Frameworks", 307 | ); 308 | PRODUCT_BUNDLE_IDENTIFIER = alchemytech.ca.SwiftUITabBat; 309 | PRODUCT_NAME = "$(TARGET_NAME)"; 310 | SWIFT_VERSION = 5.0; 311 | TARGETED_DEVICE_FAMILY = "1,2"; 312 | }; 313 | name = Debug; 314 | }; 315 | 0CFAC1B123D6CE8D00C73E88 /* Release */ = { 316 | isa = XCBuildConfiguration; 317 | buildSettings = { 318 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 319 | CODE_SIGN_STYLE = Automatic; 320 | DEVELOPMENT_ASSET_PATHS = "\"SwiftUITabBat/Preview Content\""; 321 | DEVELOPMENT_TEAM = 4P9J52TBT2; 322 | ENABLE_PREVIEWS = YES; 323 | INFOPLIST_FILE = SwiftUITabBat/Info.plist; 324 | LD_RUNPATH_SEARCH_PATHS = ( 325 | "$(inherited)", 326 | "@executable_path/Frameworks", 327 | ); 328 | PRODUCT_BUNDLE_IDENTIFIER = alchemytech.ca.SwiftUITabBat; 329 | PRODUCT_NAME = "$(TARGET_NAME)"; 330 | SWIFT_VERSION = 5.0; 331 | TARGETED_DEVICE_FAMILY = "1,2"; 332 | }; 333 | name = Release; 334 | }; 335 | /* End XCBuildConfiguration section */ 336 | 337 | /* Begin XCConfigurationList section */ 338 | 0CFAC19623D6CE8C00C73E88 /* Build configuration list for PBXProject "SwiftUITabBar" */ = { 339 | isa = XCConfigurationList; 340 | buildConfigurations = ( 341 | 0CFAC1AD23D6CE8D00C73E88 /* Debug */, 342 | 0CFAC1AE23D6CE8D00C73E88 /* Release */, 343 | ); 344 | defaultConfigurationIsVisible = 0; 345 | defaultConfigurationName = Release; 346 | }; 347 | 0CFAC1AF23D6CE8D00C73E88 /* Build configuration list for PBXNativeTarget "SwiftUITabBar" */ = { 348 | isa = XCConfigurationList; 349 | buildConfigurations = ( 350 | 0CFAC1B023D6CE8D00C73E88 /* Debug */, 351 | 0CFAC1B123D6CE8D00C73E88 /* Release */, 352 | ); 353 | defaultConfigurationIsVisible = 0; 354 | defaultConfigurationName = Release; 355 | }; 356 | /* End XCConfigurationList section */ 357 | }; 358 | rootObject = 0CFAC19323D6CE8C00C73E88 /* Project object */; 359 | } 360 | --------------------------------------------------------------------------------