Guest User

Untitled

a guest
Jan 22nd, 2018
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. var win = Ti.UI.createWindow({
  2. backgroundColor: '#FFF'
  3. });
  4.  
  5. var textField = Ti.UI.createTextField({
  6. hintText: 'Digite seu nome',
  7. top: 30,
  8. height: 40,
  9. width: 300,
  10. borderStyle: Ti.UI.INPUT_BORDERSTYLE_ROUNDED
  11. });
  12.  
  13. win.add(textField);
  14.  
  15. var button = Ti.UI.createButton({
  16. title: 'clique aqui',
  17. top: 100,
  18. height: 50,
  19. width: 200,
  20. });
  21.  
  22. button.addEventListener('click', function(e) {
  23. Ti.UI.createAlertDialog({
  24. message: 'Olá ' + textField.value
  25. }).show();
  26. });
  27.  
  28. win.add(button);
  29.  
  30. win.open();
Add Comment
Please, Sign In to add comment