Hi all, How can i make the dialog filling all stat...
# compose-ios
a
Hi all, How can i make the dialog filling all status bar and navigation bar on ios ?
k
Try https://terrakok.github.io/Compose-Multiplatform-Wizard/ It uses a full screen configuration
a
DialogProperties.usePlatformInsets
. Available for non-android source sets in latest RC build https://github.com/JetBrains/compose-multiplatform-core/pull/833
a
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
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
Okay .. thank you
👌 1