Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 990 Bytes

1.Initail project setup.md

File metadata and controls

45 lines (35 loc) · 990 Bytes

🔷 1.Initial Project Setup

🔶 Assets

image

🔶 Launch screen setup

image

🔶 Main screen setup with TabView

struct MainView: View {
var body: some View {
TabView {
  ContentView()
    .tabItem {
      Image(systemName: "square.grid.2x2")
      Text("둘러보기")
    }

  VideoListView()
    .tabItem {
      Image(systemName: "play.rectangle")
      Text("비디오")
    }

  MapView()
    .tabItem {
      Image(systemName: "map")
      Text("지도")
    }

  GalleryView()
    .tabItem {
      Image(systemName: "photo")
      Text("사진")
    }
} //: TAB
}
}

스크린샷