Last active
December 23, 2015 03:49
-
-
Save nuno/6576002 to your computer and use it in GitHub Desktop.
iOS 7 test fonts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "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' | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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