Hi everyone,
i’m newbie in corona. i have an issue currently when i tried create two or more native textField for my input. But it only create or show one of them on devices screen. Here is my code. Thanks for your help.
----------------------------------------------------------------------------------------- -- -- main.lua -- ----------------------------------------------------------------------------------------- textField1 = native.newTextField(50, 100, 200, 50) textField1.align = "left" textField1.setTextColor(0, 0,0,255) textField1.size = 32 textField1.text = "Text Field 1" textField2 = native.newTextField(50, 300, 200, 50) textField2.align = "left" textField2.setTextColor(0, 0,0,255) textField2.size = 32 textField2.text = "Text field 2"