I was wondering, when I use native.newTextField it produces a border around the field, but when I use native.newTextBox, it doesn’t produce any border around the box?
Is this normal? And is there a way to add a border, with it not being a regular display object.
Also the placeholder is missing?
The whole thing simply appears as a white box with no border around it
I’m using corona 2014.8.5 on both Windows and Mac (I realise Mac simulator is best for previewing native textFields and Boxes)
I built the app for my ios6 iphone 4s and it looks the same as it does in the simulator - a white box with no border (see attached image)
The code:
from_textBox = native.newTextBox( display.contentWidth * 0.5, 150, 290 ,110)
from_textBox.font = native.newFont( native.systemFont, 16 )
from_textBox.isEditable = true
from_textBox.placeholder = “From Address”
from_textBox.hasBackground = true
