How to add a keyboard toolbar in SwiftUI that remains even when keyboard not visible

505 Views Asked by At

I have a chat app and want to add a toolbar to the keyboard similar to an inputAccessoryView previously prior to SwiftUI.

I know iOS15 now has the option to add a toolbar using the following (from hackingwithswift)

.toolbar {
    ToolbarItemGroup(placement: .keyboard) {
        Button("Click me!") {
            print("Clicked")
        }
    }
}

However this only displays when the keyboard is visible. As with all chat apps I want this "accessoryView" to be permanently visible. I am able to do my own custom implementation using views however I want to know if it is possible to use a keyboard toolbar and have it permanently displayed?

This would help greatly with the animations as opposed to using custom implementations.

Once again, prior to SwiftUI this would be achieved using an inputAccessoryView and having that viewController overriding inputAccessoryView and canBecomeFirstResponder to have the toolbar floating at the bottom of the screen when the keyboard is not visible. I want to achieve that in SwiftUI with a toolbar.

0

There are 0 best solutions below