In kmp 1.5.0 version WindowInsets are introduced s...
# compose-ios
k
In kmp 1.5.0 version WindowInsets are introduced so how to use them in ios to make application immersive like this.
d
Yes, you can use this code:
Copy code
Box(Modifier.fillMaxSize().background(/*gradient*/)) {
    Column(Modifier.fillMaxSize().windowInsetsPadding(WindowInsets.systemBars)) {
       Text("Dhyaan")
       Text("by mrkaydev")
    }
}