Remove username and password bars
This commit is contained in:
@@ -90,14 +90,6 @@ Item {
|
||||
states: [
|
||||
State {
|
||||
name: "on"
|
||||
PropertyChanges {
|
||||
target: mainStack
|
||||
opacity: 1
|
||||
}
|
||||
PropertyChanges {
|
||||
target: footer
|
||||
opacity: 1
|
||||
}
|
||||
PropertyChanges {
|
||||
target: wallpaperFader
|
||||
factor: 1
|
||||
@@ -105,57 +97,10 @@ Item {
|
||||
},
|
||||
State {
|
||||
name: "off"
|
||||
PropertyChanges {
|
||||
target: mainStack
|
||||
opacity: 0
|
||||
}
|
||||
PropertyChanges {
|
||||
target: footer
|
||||
opacity: 0
|
||||
}
|
||||
PropertyChanges {
|
||||
target: wallpaperFader
|
||||
factor: 0
|
||||
}
|
||||
}
|
||||
]
|
||||
transitions: [
|
||||
Transition {
|
||||
from: "off"
|
||||
to: "on"
|
||||
//Note: can't use animators as they don't play well with parallelanimations
|
||||
ParallelAnimation {
|
||||
NumberAnimation {
|
||||
target: mainStack
|
||||
property: "opacity"
|
||||
duration: units.longDuration
|
||||
easing.type: Easing.InOutQuad
|
||||
}
|
||||
NumberAnimation {
|
||||
target: footer
|
||||
property: "opacity"
|
||||
duration: units.longDuration
|
||||
easing.type: Easing.InOutQuad
|
||||
}
|
||||
}
|
||||
},
|
||||
Transition {
|
||||
from: "on"
|
||||
to: "off"
|
||||
ParallelAnimation {
|
||||
NumberAnimation {
|
||||
target: mainStack
|
||||
property: "opacity"
|
||||
duration: 500
|
||||
easing.type: Easing.InOutQuad
|
||||
}
|
||||
NumberAnimation {
|
||||
target: footer
|
||||
property: "opacity"
|
||||
duration: 500
|
||||
easing.type: Easing.InOutQuad
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
Reference in New Issue
Block a user