How to set html meta

@mohammad_altoiher @Hezzron_Austin here’s how you can modify viewport in UI Builder:

  1. Add the Custom Code block in the Page Enter handler:
    UI Builder - ConsoleDemo - Backendless 2022-08-25 12-09-49
  2. Click the gear icon and add the following code:
const metaViewPort = document.querySelector("meta[name=viewport]")
metaViewPort.setAttribute('content', 'width=600, initial-scale=1')

Modify the content as you see fit. Click the Save and Close button.

That should do it. I tried it in my page and it worked just fine.

Regards,
Mark