Skip to content

Instantly share code, notes, and snippets.

@alexnaspo
Last active December 14, 2015 09:38
Show Gist options
  • Save alexnaspo/5066003 to your computer and use it in GitHub Desktop.
Save alexnaspo/5066003 to your computer and use it in GitHub Desktop.
for the use of my blog
var username = Ti.UI.createTextField({
width:Ti.UI.FILL,
hintText:'Email',
height:'40dp',
backgroundColor:'#fff'
});
var line = Ti.UI.createView({
width:Ti.UI.FILL,
height:'1dp',
backgroundColor:'#ccc'
});
var password = Ti.UI.createTextField({
width:Ti.UI.FILL,
hintText:'Password',
passwordMask:true,
height:'40dp',
backgroundColor:'#fff'
});
fieldContainer.add(username);
fieldContainer.add(line);
fieldContainer.add(password);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment