chore(StatusLetterIdenticon): test different backgrounds

This commit is contained in:
Patryk Osmaczko 2022-04-07 21:14:56 +02:00 committed by Michał Cieślak
parent 3700e575f8
commit 60946e66a7
1 changed files with 49 additions and 29 deletions

View File

@ -4,7 +4,11 @@ import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
import StatusQ.Components 0.1
GridLayout {
ColumnLayout {
GridLayout {
Layout.fillWidth: true
Layout.fillHeight: true
columns: 6
columnSpacing: 5
rowSpacing: 5
@ -38,4 +42,20 @@ GridLayout {
StatusRoundIcon {
icon.name: "info"
}
}
Flow {
Layout.fillWidth: true
spacing: 4
Repeater {
model: 12
StatusLetterIdenticon {
name: "A"
color: Theme.palette.userCustomizationColors[index]
letterSize: 16
}
}
}
}