~ci-train-bot/ubuntuone-credentials/ubuntuone-credentials-ubuntu-zesty-2205

« back to all changes in this revision

Viewing changes to qml-credentials-service/SuccessScreen.qml

  • Committer: Michael McCracken
  • Date: 2013-06-28 23:33:06 UTC
  • mto: (25.12.2 add-qmltypes)
  • mto: This revision was merged to the branch mainline in revision 32.
  • Revision ID: mike.mccracken@canonical.com-20130628233306-ra4ivh43alhe8awq
add working qml service plugin with initial UI based on prototype by Diego Sarmentero

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Ubuntu.Components 0.1
 
3
 
 
4
Rectangle {
 
5
    color: "transparent"
 
6
 
 
7
    Rectangle{
 
8
        anchors.fill: parent
 
9
        anchors.leftMargin: units.gu(4)
 
10
        anchors.topMargin: units.gu(20)
 
11
        Label {
 
12
            font.bold: true
 
13
            fontSize: "x-large"
 
14
            width: parent.width
 
15
            wrapMode: Text.WrapAtWordBoundaryOrAnywhere
 
16
            color: "#dd4814"
 
17
            text: "LOGIN SUCCESSFUL!"
 
18
        }
 
19
    }
 
20
}