TabView {
SummaryView()
.toolbar(.hidden, for: .tabBar, .bottomBar)
.tabItem { Text("Title.Summary") }
.tag(TabItems.summary)
CalendarView()
.toolbar(.hidden, for: .tabBar, .bottomBar)
.tabItem { Text("Title.Calendar") }
.tag(TabItems.calendar)
EventTypeView()
.toolbar(.hidden, for: .tabBar, .bottomBar)
.tabItem { Text("Title.EventType") }
.tag(TabItems.group)
LectureView()
.toolbar(.hidden, for: .tabBar, .bottomBar)
.tabItem { Text("Title.Lecture") }
.tag(TabItems.lecture)
NotificationView()
.toolbar(.hidden, for: .tabBar, .bottomBar)
.tabItem { Text("Title.Notifications") }
.tag(TabItems.notification)
}
Tabbar is hidden when first opened but tabbar is appeared when I change tab selection. I tested it on iOS 17.1, iOS 17.4, and this bug is only appeared in iOS 17.4.