我需要设计带有阴影的窗口背景。所以我尝试了背景渐变,但我没有得到我所期望的,
我的代码,
".questionsContainer":{
height:Ti.UI.FILL,
width:Ti.UI.FILL,
layout:'vertical',
backgroundGradient: {
type: "linear",
startPoint: { x: "0%", y:"0%"},
endPoint: { x: "0%", y:"100%"},
colors: [
{ color: "#3C3C3C", offset: 0.0 },//302E2E
{ color: "#696969", offset: 1.0 }
]
}
}
我试过这个,但我需要应用类似于以下代码的样式,
background-image:
radial-gradient(
#C0C0C0,
#696969
);
如何在我的代码中应用这种样式?