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/TimelineView.qml

14 lines
234 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
ListView {
id: root
clip: true
delegate: Status {
width: ListView.view.width
}
}