status-desktop/ui/app/AppLayouts/Chat/components/SuggestedChannel.qml

32 lines
757 B
QML
Raw Normal View History

2020-06-17 19:18:31 +00:00
import QtQuick 2.13
import "../../../../imports"
import "../../../../shared"
Rectangle {
property string channel: "status"
border.width: 1
radius: 8
width: children[0].width + 10
height: 32
border.color: Theme.grey
StyledText {
id: suggestedChannelText
text: "#" + channel
font.weight: Font.Medium
color: Theme.blue;
anchors.top: parent.top;
anchors.topMargin: 5;
anchors.left: parent.left;
anchors.leftMargin: 5;
horizontalAlignment: Text.AlignLeft;
font.pixelSize: 15
}
MouseArea {
anchors.fill: parent
2020-05-28 14:58:25 +00:00
onClicked: chatsModel.joinChat(channel, Constants.chatTypePublic)
cursorShape: Qt.PointingHandCursor
}
}