Skip to content

Commit

Permalink
#79 [Style] MapView 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
soletree committed Aug 14, 2024
1 parent 32b1531 commit 105bc37
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Score/Score/Source/View/Record/TodayWorkOut/MapView.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
//
// MapView.swift
// Score
//
// Created by sole on 8/14/24.
//

import SwiftUI
import NMapsMap

struct MapView: UIViewControllerRepresentable {
func makeUIViewController(
context: Context
) -> some UIViewController {
return MapViewController()
}

func updateUIViewController(
_ uiViewController: UIViewControllerType,
context: Context
) {

}
}

#Preview {
MapView()
}

0 comments on commit 105bc37

Please sign in to comment.