From cf66d1e24ad21c0ca7410d0b19f721c7415dd2cc Mon Sep 17 00:00:00 2001 From: Matt Ranostay Date: Tue, 21 Nov 2017 22:36:36 -0800 Subject: navigation: qml: add State field to RouteAddress form Bug-AGL: SPEC-1068 Change-Id: I0936ccea829ac7ecc537e25cb6b4c64017191f11 Signed-off-by: Matt Ranostay --- app/forms/RouteAddressForm.ui.qml | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'app/forms/RouteAddressForm.ui.qml') 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 @@ -116,6 +117,16 @@ Item { Layout.fillWidth: true } + Label { + id: label9 + text: qsTr("State") + } + + TextField { + id: toState + Layout.fillWidth: true + } + Label { id: label8 text: qsTr("Country") -- cgit 1.2.3-korg