On the iOS 16.1.1 build, the TextBox widgets have a small font. I’ve tried setting the size property to 30 and the font size is not changed. I have sample code below. Is anyone else experiencing this and do you know a fix for it?
local composer = require(“composer”)
local scene = composer.newScene()
function scene:create(event)
local textBox = native.newTextBox(display.contentWidth / 2, display.contentHeight / 2, 280, 140)
textBox.isEditable = true
textBox.size = 30
textBox.hasBackground = true
textBox:setTextColor(0, 0, 0)
end
function scene:destroy(event)
end
scene:addEventListener(“create”, scene)
scene:addEventListener(“destroy”, scene)
return scene