Input component
An Input is a field used to obtain a response from a user.
<Input placeholder="Please enter your email" onChange={(value) => { email = value }} onSubmit={(value) => { email = value }} uiBackground={{ color: Color4.Red() }} uiTransform={{ width: 200, height: 36 }} value={textValue} />
Input component
An Input is a field used to obtain a response from a user.
Example