Skip to content

Commit

Permalink
[Add, Feat] #4 - VC와 ContentView를 연결하는 Bridge 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
yurim830 committed Jan 8, 2025
1 parent 0f1f4ad commit 779cb0f
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
//
// MapViewControllerBridge.swift
// Staccato-iOS
//
// Created by 김유림 on 1/9/25.
//

import GoogleMaps

import SwiftUI

struct MapViewControllerBridge: UIViewControllerRepresentable {

func makeUIViewController(context: Context) -> MapViewController {
return MapViewController()
}

func updateUIViewController(_ uiViewController: MapViewController, context: Context) {
}
}

0 comments on commit 779cb0f

Please sign in to comment.