Skip to content

Instantly share code, notes, and snippets.

@nuno
Last active December 23, 2015 03:49
Show Gist options
  • Select an option

  • Save nuno/6576002 to your computer and use it in GitHub Desktop.

Select an option

Save nuno/6576002 to your computer and use it in GitHub Desktop.
iOS 7 test fonts
"Label": {
width: Ti.UI.SIZE,
height: Ti.UI.SIZE,
color: "#000",
fontSize: 20,
textAlign: 'center'
},
"#Label0": {
font: {
// system font
}
},
"#Label1": {
font: {
fontFamily: 'Helvetica Neue'
}
},
"#Label2": {
font: {
fontFamily: 'HelveticaNeue'
}
},
"#Label3": {
font: {
fontFamily: 'HelveticaNeue-UltraLight'
}
},
"#Label4": {
font: {
fontFamily: 'HelveticaNeue-Medium'
}
}
<Alloy>
<Window id="win2" title="Blue Window" backgroundColor="white" layout="vertical">
<Label id="Label0" top="50">Verificação de fonte.</Label>
<Label id="Label1">Verificação de fonte.</Label>
<Label id="Label2">Verificação de fonte.</Label>
<Label id="Label3">Verificação de fonte.</Label>
<Label id="Label4">Verificação de fonte.</Label>
</Window>
</Alloy>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment