我剛啓動Appcelerator的鈦合金。將樣式應用到我的Titanium UI
我怎樣才能添加樣式我控制器/ index.js下面的代碼:
var title = Titanium.UI.createLabel({
title: "My Label",
id: "myLabel"
});
我想這一項上款式/ index.tss
"#myLabel": {
textAlign: "left",
right: 15,
color: '#000',
font: { fontSize:20 },
shadowColor: '#aaa',
shadowOffset: {x:5, y:5},
horizontalWrap: true
}
但不幸的是它現在正在工作。任何人都可以教我如何添加樣式到我的Titanium UI
這就是爲什麼我現在正在搜索interwebz。樣式文檔很羅嗦且不明確。 –
這節省了我的搜索時間 – WeMakeSoftware