This repository has been archived on 2024-06-03. You can view files and clone it, but cannot push or open issues or pull requests.
app/qml/components/NextPageDelegate.qml
Dorian Zedler eeb939ed26 - added 'disconnect' functionality for base station
- made IP->adress of base station editable
- some cleanup
2019-03-29 23:42:56 +01:00

23 lines
465 B
QML

import QtQuick 2.0
import QtQuick.Controls 2.2
SmoothItemDelegate {
id: control
text: ""
rightPadding: forwardImage.width * 1.1
Image {
id: forwardImage
source: appTheme.style.backIcon
rotation: 180
height: control.height * 0.4
width: height
anchors {
verticalCenter: parent.verticalCenter
right: parent.right
rightMargin: control.width * 0.01
}
}
}