23 lines
437 B
QML
23 lines
437 B
QML
|
// SPDX-FileCopyrightText: 2024 Joshua Goins <josh@redstrate.com>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
import QtQuick
|
||
|
|
||
|
import org.kde.kirigami as Kirigami
|
||
|
|
||
|
import com.redstrate.sukai.models
|
||
|
|
||
|
TimelinePage {
|
||
|
id: root
|
||
|
|
||
|
required property string did
|
||
|
required property string handle
|
||
|
|
||
|
title: handle
|
||
|
|
||
|
model: TimelineModel {
|
||
|
id: timelineModel
|
||
|
}
|
||
|
|
||
|
Component.onCompleted: timelineModel.loadProfile(did)
|
||
|
}
|