I want to make page background fully transparent in blackberry 10 cascades. How can i do this ??
I tried with following code but it is not working..
Page {
Container {
layout: DockLayout {}
Label {
text: qsTr("Hello World")
textStyle.base: SystemDefaults.TextStyles.BigText
verticalAlignment: VerticalAlignment.Center
horizontalAlignment: HorizontalAlignment.Center
}
opacity : 0
preferredWidth: 780.0
preferredHeight: 1280.0
}
}
Thanks