Advertisement
Guest User

Rodrigo Maca Input

a guest
Jul 22nd, 2014
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. index.xml:
  2. <Alloy>
  3.     <Window class="container">
  4.         <Label id="origenLabel" class="label">Origen</Label>
  5.         <TextField id="origenInput" class="input"/>
  6.         <ImageView id="origenIcon" class="icon-input"></ImageView>
  7.     </Window>
  8. </Alloy>
  9.  
  10. index.tss:
  11. ".container": {
  12.     backgroundColor: 'white',
  13.     navBarHidden: true
  14. },
  15. ".label": {
  16.     color: 'darkgrey',
  17.     height: Ti.UI.SIZE,
  18.     left: 10,
  19.     font: {
  20.         fontSize: '22dp'
  21.     },
  22.     width: Ti.UI.SIZE,
  23. },
  24. ".input": {
  25.     color: 'darkgrey',
  26.     font: {
  27.         fontSize: '16dp'
  28.     },
  29.     height: '40dp',
  30.     left: 10,
  31.     textAlign: Ti.UI.TEXT_ALIGNMENT_CENTER,
  32.     width: '250dp'
  33. },
  34. ".icon-input": {
  35.     height: '30dp',
  36.     left: 15
  37. },
  38. "#origenLabel": {
  39.     top: '50dp'
  40. },
  41. "#origenInput": {
  42.     top: '90dp'
  43. },
  44. "#origenIcon": {
  45.     image: '/images/plane.png',
  46.     top: '90dp'
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement