Skip to content

Commit 58f39a6

Browse files
updating ios call
1 parent acf6719 commit 58f39a6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DroidconIosDocumentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ The framework provides integration with Compose Multiplatform for UI rendering:
139139
func getRootController(viewModel: DroidconKitWaitForLoadedContextModel) -> UIViewController
140140

141141
// Creates a specific view controller for the venue screen
142-
func venueBodyViewController() -> UIViewController
142+
func venueBodyViewController(venueMapUrl:String?) -> UIViewController
143143
```
144144

145145
### Session Management

shared-ui/src/iosMain/kotlin/co/touchlab/droidcon/ui/ComposeRootController.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ fun getRootController(viewModel: WaitForLoadedContextModel) = ComposeUIViewContr
1010
}
1111

1212
@Suppress("unused")
13-
fun venueBodyViewController() = ComposeUIViewController {
14-
VenueBodyView()
13+
fun venueBodyViewController(venueMapUrl:String?) = ComposeUIViewController {
14+
VenueBodyView(venueMapUrl = venueMapUrl)
1515
}

0 commit comments

Comments
 (0)