main.qml Example File
nfcmacaddress/assets/main.qml
import bb.cascades 1.0
Page {
Container {
layout: DockLayout {}
ImageView {
horizontalAlignment: HorizontalAlignment.Fill
verticalAlignment: VerticalAlignment.Fill
imageSource: "asset:///images/background.png"
}
Label {
horizontalAlignment: HorizontalAlignment.Center
verticalAlignment: VerticalAlignment.Top
text: qsTr("Send a tag via NFC to this device to see the senders MAC address")
textStyle {
base: SystemDefaults.TextStyles.BodyText
color: Color.White
textAlign: TextAlign.Center
}
multiline: true
}
Label {
horizontalAlignment: HorizontalAlignment.Center
verticalAlignment: VerticalAlignment.Center
text: qsTr("MAC Address\n%1").arg(_macAddressHandler.macAddress)
textStyle {
base: SystemDefaults.TextStyles.TitleText
color: Color.White
textAlign: TextAlign.Center
}
multiline: true
}
}
}