Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Tabs {
- id: tabs
- anchors.fill: parent
- // First tab begins here
- Tab {
- objectName: "Home"
- title: i18n.tr("Home")
- page:
- Loader {
- id: homeLoader
- anchors{
- top: parent.top
- topMargin: units.gu(9)
- bottom: parent.bottom
- left: parent.left
- right: parent.right
- }
- source: DataBase.frontendIp1().toString() === "" ?
- "StartHere.qml"
- :
- "Videos.qml"
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement