// import QtQuick 1.0 // to target S60 5th Edition or Maemo 5 import QtQuick 1.0 Rectangle { id: navBar width: parent.width height: 60 color: "#1e1e1e" anchors.top: parent.top property string navBarTitle Text { id: popularTxt anchors.centerIn:parent color: "#ffffff" font.family: helvetica.name font.pointSize: 8.0 font.bold: true text: navBarTitle } }