Update the layouts in the device verifcation process to make sure that all possible window sizes can be handled BUG: 485309
26 lines
490 B
QML
26 lines
490 B
QML
// SPDX-FileCopyrightText: 2022 Tobias Fella <tobias.fella@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
import QtQuick
|
|
import QtQuick.Layouts
|
|
|
|
import org.kde.kirigami as Kirigami
|
|
|
|
import org.kde.neochat
|
|
|
|
RowLayout {
|
|
id: root
|
|
|
|
property alias model: repeater.model
|
|
|
|
spacing: Kirigami.Units.largeSpacing
|
|
|
|
Repeater {
|
|
id: repeater
|
|
delegate: EmojiItem {
|
|
emoji: modelData.emoji
|
|
description: modelData.description
|
|
}
|
|
}
|
|
}
|