main.qml Example File
nfcsender/assets/main.qml
import bb.cascades 1.0
Page {
Container {
layout: DockLayout {}
ImageView {
horizontalAlignment: HorizontalAlignment.Fill
verticalAlignment: VerticalAlignment.Fill
imageSource: "asset:///images/background.png"
}
Container {
horizontalAlignment: HorizontalAlignment.Center
verticalAlignment: VerticalAlignment.Center
preferredWidth: 700
TextField {
inputMode: TextFieldInputMode.Text
hintText: qsTr("Enter some text")
onTextChanging: {
_nfcSender.payload = text
}
}
Label {
text: qsTr("Type some text into the text field and then tap an NFC tag or device to share content")
multiline: true
textStyle {
base: SystemDefaults.TextStyles.BodyText
color: Color.White
textAlign: TextAlign.Center
}
}
}
}
}