Comment 4 for bug 1158246

Revision history for this message
Tim Peeters (tpeeters) wrote :

Correction: the code I pasted above was the wrong code. This one works:

import QtQuick 2.0
import Ubuntu.Components 0.1

MainView {
    objectName: "mainView"
    applicationName: "CurrencyConverter"
    id: root

    width: units.gu(60)
    height: units.gu(80)

    Page {
 title: "title"

 Label {
         text: i18n.tr("Currency Converter")
         anchors.centerIn: parent
 }
    }
}