Add profile/verification UI for room members

This commit is contained in:
miruka
2020-07-08 11:33:05 -04:00
parent 4ccb774411
commit 9b43bef935
12 changed files with 452 additions and 31 deletions

View File

@@ -8,9 +8,10 @@ Button {
id: button
enabled: ! button.loading
spacing: theme.spacing
topPadding: padded ? spacing / (circle ? 1.75 : 2) : 0
topPadding:
padded ? spacing * (circle ? (iconItem.small ? 1.5 : 1.8) : 0.5) : 0
bottomPadding: topPadding
leftPadding: padded ? spacing / (circle ? 1.5 : 1) : 0
leftPadding: padded ? spacing : 0
rightPadding: leftPadding
icon.color: theme.icons.colorize
@@ -31,7 +32,7 @@ Button {
background: HButtonBackground {
button: button
buttonTheme: theme.controls.button
radius: circle ? height : enableRadius ? theme.radius : 0
radius: circle ? height / 2 : enableRadius ? theme.radius : 0
color: backgroundColor
}

View File

@@ -0,0 +1,7 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
import QtQuick.Controls 2.12
StackView {
}