diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-11-21 22:36:36 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2017-11-21 23:12:08 -0800 |
commit | cf66d1e24ad21c0ca7410d0b19f721c7415dd2cc (patch) | |
tree | af1586beb25d7e9b6d6acc9b845b2a5f1b807c46 /app/forms/RouteAddressForm.ui.qml | |
parent | 12d5a1e9aadc26ddd4aceadb96234bc4f378b39e (diff) |
navigation: qml: add State field to RouteAddress form
Bug-AGL: SPEC-1068
Change-Id: I0936ccea829ac7ecc537e25cb6b4c64017191f11
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'app/forms/RouteAddressForm.ui.qml')
-rw-r--r-- | app/forms/RouteAddressForm.ui.qml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/app/forms/RouteAddressForm.ui.qml b/app/forms/RouteAddressForm.ui.qml index 5e43e7f..a0ace76 100644 --- a/app/forms/RouteAddressForm.ui.qml +++ b/app/forms/RouteAddressForm.ui.qml @@ -46,6 +46,7 @@ import QtQuick.Layouts 1.2 Item { property alias toStreet: toStreet property alias toCity: toCity + property alias toState: toState property alias toCountry: toCountry property alias goButton: goButton property alias clearButton: clearButton @@ -117,6 +118,16 @@ Item { } Label { + id: label9 + text: qsTr("State") + } + + TextField { + id: toState + Layout.fillWidth: true + } + + Label { id: label8 text: qsTr("Country") } |