-
Hello, I want to set the custom height of the view that sits above the SDK keyboard in iOS: open var defaultViewMode: KeyboardAppViewMode { There isn't any documentation on this, but it seems like the height isn't configurable: it doesn't seem to accept integer parameters, just a hard coded default. Is there a workaround? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hello @itsbmac , The height is adapted to the container. For example, you can follow this example where we add the size inside the container view: custom view |
Beta Was this translation helpful? Give feedback.
Hi @itsbmac ,
We have updated the example to make it easier to follow.
The main pieces of code:
Instead of
.fullCover
change to.frame
, which indicates that the view appears on top of the keyboard.The example provided is 80, but if you change this number the total height of the container view will adjust to the height.
Let me know if this …