chore(StatusLetterIdenticon): test different backgrounds

This commit is contained in:
Patryk Osmaczko 2022-04-07 21:14:56 +02:00 committed by osmaczko
parent d7b1ae9fbc
commit a8e1ed863c
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
ColumnLayout {
GridLayout {
Layout.fillWidth: true
Layout.fillHeight: true
columns: 6
columnSpacing: 5
rowSpacing: 5
@ -39,3 +43,19 @@ GridLayout {
icon.name: "info"
}
}
Flow {
Layout.fillWidth: true
spacing: 4
Repeater {
model: 12
StatusLetterIdenticon {
name: "A"
color: Theme.palette.userCustomizationColors[index]
letterSize: 16
}
}
}
}