Patil Vaibhav2147 Vp
01/27/2024, 1:40 PM*struct* ComposeView: UIViewControllerRepresentable {
*func* makeUIViewController(context: Context) -> UIViewController {
MainViewControllerKt.MainViewController()
}
*func* updateUIViewController(_ uiViewController: UIViewController, context: Context) {}
}
*struct* ContentView: View {
*var* body: *some* View {
ComposeView()
.edgesIgnoringSafeArea(.all) // added the code here
.ignoresSafeArea(.keyboard)
}
}