https://kotlinlang.org logo
#compose-ios
Title
# compose-ios
a

Angga Ardinata

10/14/2023, 11:41 AM
Hi all, How can i make the dialog filling all status bar and navigation bar on ios ?
k

Konstantin Tskhovrebov

10/14/2023, 5:39 PM
Try https://terrakok.github.io/Compose-Multiplatform-Wizard/ It uses a full screen configuration
a

Alexander Zhirkevich

10/14/2023, 6:46 PM
DialogProperties.usePlatformInsets
. Available for non-android source sets in latest RC build https://github.com/JetBrains/compose-multiplatform-core/pull/833
a

Angga Ardinata

10/14/2023, 9:14 PM
Thanks everyone
hi @Alexander Zhirkevich.. im using
Copy code
properties = DialogProperties(
    usePlatformDefaultWidth = false,
    dismissOnBackPress = false,
    usePlatformInsets = false
)
in android the build is failed stating that Cannot find a parameter with this name: usePlatformInsets
a

Alexander Zhirkevich

10/15/2023, 8:58 AM
It is not available for android yet. If you want to use this from common you have to write expect val fullscreenDialogProperties : DialogProperties and use this constructor in iOS main only
a

Angga Ardinata

10/15/2023, 8:59 AM
Okay .. thank you
👌 1
3 Views