How to resize FMX.TMSFMXTouchKeyBoard popup larger for user to use?

I made the position size bigger but when it pops up on the panel it is still smaller.

How to stretch the keyboard for user to use?

Thanks
Garnet

You can use the following code:

var
  w, h: Single;
begin
  w := TMSFMXPopupTouchKeyboard1.Keyboard.Width;
  h := TMSFMXPopupTouchKeyboard1.Keyboard.Height;

  TMSFMXPopupTouchKeyboard1.Keyboard.Zoom(1000 / w, 550 / h);
  TMSFMXPopupTouchKeyboard1.ShowKeyboard;