import QtQuick
import Quickshell
// import Quickshell.Networking
import QtQuick.Layouts
import "../../"
import "classes"
RowLayout {
Text {
text: '<span style="color: red;">Hello</span> <span style="color: blue;">World</span>'
textFormat: Text.RichText
}
}
|