diff options
| author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-22 16:53:41 +0700 | 
|---|---|---|
| committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-22 16:53:41 +0700 | 
| commit | 06e195d0c9031ffd4ebfe59f540287647a41702d (patch) | |
| tree | 9609444026eb2aff2773d8ecc39c0931112dd6f8 | |
| parent | 99e7949ac253f04a207ddf5b5ae97813d1b5a4b1 (diff) | |
add emailButton state
| -rw-r--r-- | LoginForm.ui.qml | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/LoginForm.ui.qml b/LoginForm.ui.qml index bea97df..a2dc1d4 100644 --- a/LoginForm.ui.qml +++ b/LoginForm.ui.qml @@ -37,7 +37,8 @@ Rectangle {                  elide: Text.ElideRight              }              background: Rectangle { -                color: "#fff" +                opacity: enabled ? 0.3 : 1 +                color: emailButton.down ? "#6d22e9" : "#ffffff"                  border.color: "#6d22e9"                  border.width: 1                  radius: 6 |