1// (c) Copyright Juergen Hunold 2012 2// Use, modification and distribution is subject to the Boost Software 3// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at 4// http://www.boost.org/LICENSE_1_0.txt) 5 6import QtQuick 2.0 7 8Rectangle { 9 id: page 10 width: 400; height: 200 11 color: "#d6d6d6" 12 Text { 13 id: helloText 14 text: "B2 built!" 15 color: "darkgray" 16 anchors.horizontalCenter: page.horizontalCenter 17 anchors.verticalCenter: page.verticalCenter 18 font.pointSize: 30; font.italic: true ; font.bold: true 19 } 20} 21