Archived
1
Fork 0
This repository has been archived on 2025-04-27. You can view files and clone it, but cannot push or open issues or pull requests.
sukai/ui/StatusEmbed.qml

24 lines
490 B
QML
Raw Permalink Normal View History

2024-12-08 13:15:54 -05:00
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
// SPDX-License-Identifier: GPL-3.0-or-later
import QtQuick
import QtQuick.Layouts
RowLayout {
id: root
required property var mediaUrls
Repeater {
model: root.mediaUrls
Image {
source: modelData
fillMode: Image.PreserveAspectFit
Layout.preferredWidth: (sourceSize.width / sourceSize.height) * height
Layout.fillHeight: true
}
}
}