CAMO-project / CAMO-iOS

[iOS] Developer - Jang Se Hee
0 stars 0 forks source link

CafeView 구현 #2

Open julia8024 opened 1 year ago

julia8024 commented 1 year ago

CafeView

julia8024 commented 1 year ago

카페 클릭 시 카페 상세페이지 전환

LazyVGrid(columns: columns) {
    ForEach((0...14), id: \.self) { _ in
        NavigationLink {
            CafeInfoView()
        } label: {
            CafeRow()
        }        
    }
}