mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
35 lines
774 B
QML
35 lines
774 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import QtQuick.Controls
|
|
|
|
Row {
|
|
id: shareTargetsRow
|
|
spacing: 10
|
|
|
|
Repeater {
|
|
model: ["Lasan's A55", "Lasan's Tab S9+", "lasan-laptop", "Somethign else"]
|
|
|
|
// Your original delegate structure
|
|
Rectangle {
|
|
// Note: You must give the Rectangle an explicit size
|
|
// so the Row knows how to position them.
|
|
width: 100
|
|
height: 130
|
|
color: "transparent"
|
|
|
|
ColumnLayout {
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.right: parent.right
|
|
spacing: 5
|
|
|
|
ShareTarget{
|
|
progressValue: 0.7
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|