macOS, iOS

[SwiftUI] 탭바, tab view

SweetDev 2021. 2. 28. 22:42
TabView {
      HomeScene()
        .tabItem {
          Text("홈")
        }
      SearchScene()
        .tabItem {
          Text("검색")
        }
      ChannelScene()
        .tabItem {
          Text("채널")
        }
      CalendarScene()
        .tabItem {
          Text("일정")
        }
      MyPageScene()
        .tabItem {
          Text("마이페이지")
        }
    }