How to add keyboard toolbar?

Hi everyone, an ionic newbie here so pls dont attack me.
Im doing on my first ionic project and I saw online the idea of an html iframe That fits the screen. After hours of troubleshooting I got it to work. Not I want to add a keyboard toolbar (the one with Done) on iOS since it didn’t come by default. I tried looking online but without much help. Also do I need to rebuild and recompile after applying the change ? I can’t really test that feature in my browser.
Thanks in advance, again Im new to this :slight_smile:

You should be able to use Keyboard.setAccessoryBarVisible({ isVisible: true })

import { Plugins } from '@capacitor/core';

Plugins.Keyboard.setAccessoryBarVisible({ isVisible: true })