created wiki

This commit is contained in:
Samkist
2022-05-30 02:06:50 -04:00
parent 3c821a48d4
commit d638920e3e
31 changed files with 1956 additions and 0 deletions

13
docs/Input.md Normal file
View File

@@ -0,0 +1,13 @@
With input's you are able to create a object where the user can type something in.<br>
Here are all possible functions available for inputs:<br>
Remember input inherits from [object](https://github.com/NoryiE/NyoUI/wiki/Object):
## setInputType
changes the input type
````lua
local mainFrame = basalt.createFrame("myFirstFrame"):show()
local aInput = mainFrame:addInput("myFirstInput"):setInputType("password"):show()
````
**parameters:** string value ("text", "password", "number")<br>
**returns:** self<br>