summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/qml/pages/AboutPage.qml4
-rw-r--r--app/qml/pages/ManagerPage.qml18
-rw-r--r--app/qml/pages/WatchPage.qml34
3 files changed, 36 insertions, 20 deletions
diff --git a/app/qml/pages/AboutPage.qml b/app/qml/pages/AboutPage.qml
index 200abdf..bec1031 100644
--- a/app/qml/pages/AboutPage.qml
+++ b/app/qml/pages/AboutPage.qml
@@ -6,10 +6,12 @@ Page {
id: page
SilicaFlickable {
+ id: flickable
anchors.fill: parent
-
contentHeight: column.height
+ VerticalScrollDecorator { flickable: flickable }
+
Column {
id: column
width: page.width
diff --git a/app/qml/pages/ManagerPage.qml b/app/qml/pages/ManagerPage.qml
index 303c2fa..af247f5 100644
--- a/app/qml/pages/ManagerPage.qml
+++ b/app/qml/pages/ManagerPage.qml
@@ -53,9 +53,12 @@ Page {
}
SilicaFlickable {
+ id: flickable
anchors.fill: parent
contentHeight: column.height
+ VerticalScrollDecorator { flickable: flickable }
+
PullDownMenu {
MenuItem {
text: qsTr("About")
@@ -85,16 +88,13 @@ Page {
}
}
- ListItem {
+ Button {
visible: pebbled.connected
- Label {
- text: pebbled.name
- truncationMode: TruncationMode.Fade
- anchors {
- left: parent.left
- right: parent.right
- margins: Theme.paddingLarge
- }
+ text: pebbled.name
+ anchors {
+ left: parent.left
+ right: parent.right
+ margins: Theme.paddingLarge
}
onClicked: pageStack.push(Qt.resolvedUrl("WatchPage.qml"))
}
diff --git a/app/qml/pages/WatchPage.qml b/app/qml/pages/WatchPage.qml
index 68502bd..90e5ec9 100644
--- a/app/qml/pages/WatchPage.qml
+++ b/app/qml/pages/WatchPage.qml
@@ -37,10 +37,12 @@ Page {
id: page
SilicaFlickable {
+ id: flickable
anchors.fill: parent
-
contentHeight: column.height
+ VerticalScrollDecorator { flickable: flickable }
+
Column {
id: column
@@ -50,19 +52,31 @@ Page {
title: pebbled.name
}
- Button {
- text: "Ping"
- onClicked: {
- pebbled.ping(66)
+ Row {
+ anchors {
+ left: parent.left
+ right: parent.right
+ margins: Theme.paddingLarge
}
- }
- Button {
- text: "Sync Time"
- onClicked: {
- pebbled.time()
+
+ Button {
+ text: "Ping"
+ width: parent.width / 2
+ onClicked: {
+ pebbled.ping(66)
+ }
+ }
+
+ Button {
+ text: "Sync Time"
+ width: parent.width / 2
+ onClicked: {
+ pebbled.time()
+ }
}
}
+
}
}
}