diff --git a/demo-ios/src/iosMain/kotlin/iOSMain.kt b/demo-ios/src/iosMain/kotlin/iOSMain.kt index 2089812..8fec99e 100644 --- a/demo-ios/src/iosMain/kotlin/iOSMain.kt +++ b/demo-ios/src/iosMain/kotlin/iOSMain.kt @@ -9,5 +9,6 @@ fun MainViewController() = ComposeUIViewController { // BottomSheetDemo() // ModalBottomSheetDemo() // SeparatorsDemo() - ScrollAreaDemo() +// ScrollAreaDemo() + ModalBottomSheetDemo() } \ No newline at end of file diff --git a/iosApp/iosApp/ContentView.swift b/iosApp/iosApp/ContentView.swift index 3041070..e033495 100644 --- a/iosApp/iosApp/ContentView.swift +++ b/iosApp/iosApp/ContentView.swift @@ -13,7 +13,7 @@ struct ComposeView: UIViewControllerRepresentable { struct ContentView: View { var body: some View { ComposeView() - .ignoresSafeArea(.keyboard) // Compose has own keyboard handler + .ignoresSafeArea() } }