Animated Custom Tab Bar - PlayStation App's Tabbar Using SwiftUI - Xcode 14 - SwiftUI Tutorials
🕑 Added 2023-02-20 19:12:29 +0000 UTCSource Code For Animated Custom Tab Bar - PlayStation App's Tabbar Using SwiftUI - Xcode 14 - SwiftUI Tutorials.
Download Codeπ
Comments
imz k
When the indicator moves to the far right, the distance from the screen is different from when it moves to the far left. How should I modify it?
Kavsoft
Simply Add it to your project and replace the Spacer() in the Home View with a TabView(selection: $activeTab) { /// Use .tag() to represent each Tab views }
franklin barzey
I started over and in a empty project it works now I need to implement it im my project
franklin barzey
I want wen the user press the buttons they go to the view import SwiftUI /// Enum Tab Cases /// Raw Value: Asset Image Name enum Tab02: String, CaseIterable { case profile = "Profile" case explore = "Explore" case UpLoad = "Up Load" case library = "Game Library" case search = "Search" var index: CGFloat { return CGFloat(Tab02.allCases.firstIndex(of: self) ?? 0) } static var count: CGFloat { return CGFloat(Tab02.allCases.count) } }
franklin barzey
hi i have some issues with navigation link I can not Create naailink to a other view can you help me out ?
SpudHound Produtions
i love this but is there a way to use SF Symbols instead of the icons i know im doing something wrong lol as i would like to use this in my apps
Duan Nguyen
Also need to fix on landscape mode...