ribesg
android:windowSoftInputMode="adjustNothing"
ComposeView().ignoresSafeArea()
.ignoresSafeArea(.all, .all)
struct ContentView: View { var body: some View { ComposeView().ignoresSafeArea() } }
struct ContentView: View { var body: some View { GeometryReader { _ in ZStack { ComposeView().ignoresSafeArea() }.frame( width: UIScreen.main.bounds.width, height: UIScreen.main.bounds.height ) } } }
Alexander Zhirkevich
Konstantin Tskhovrebov
ComposeUIViewController( configure = { onFocusBehavior = OnFocusBehavior.DoNothing } )
A modern programming language that makes developers happier.