Tag

tabBar

3 stories
J
Joynal Abedin

Implement Custom TabBar in SwiftUI

// // TabBarView.swift // Translate AI // // Created by Joynal Abedin on 3/2/23. // import SwiftUI struct TabBarView: View { @State var selectedTab = \"Translate\" @Binding var pages: [TabBarPage] ...

5
J
Joynal Abedin

TabBar in Apple Human Guidelines

Rules: Use a tab bar only to enable navigation, not help people perform actions. If you want perform action then you should use toolbar. Make sure the tab bar is visible when people navigate to different areas in your...

3
J
Joynal Abedin

Custom TabBar SwiftUI

let’s start with the Tabbar. For each tab bar item, we need a title, image, and selected image. So we need to create a struct name TabItemData. struct TabItemData { let image: String let selectedImage: String ...

4