428b165198
* feat: Add emoji support 1. StatusChatListItem (only updated parts already done by Jo) 2. StatusListItem 3. StatusInput * feat(StatusColorSelectorGrid): Added new widget for color selection as needed in wallet * fix(StatusInput): on reset, valid should be set to true else error mode is shown even though the user hasnt entered a value * fix(StatusLetterIdenticon): Removed the clicked event out from the LetterIdenticon and added it to the StatusBaseInput as other places that use the letterIdenticon dont need the mouse area is not needed
37 lines
781 B
QML
37 lines
781 B
QML
import QtQuick 2.14
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
Item {
|
|
id: root
|
|
width: 800
|
|
height: 100
|
|
|
|
Row {
|
|
id: selectedColor
|
|
anchors.top: parent.top
|
|
anchors.left: colorSelectionGrid.left
|
|
spacing: 10
|
|
StatusBaseText {
|
|
text: "SelectedColor is"
|
|
}
|
|
Rectangle {
|
|
width: 100
|
|
height: 20
|
|
radius: width/2
|
|
color: colorSelectionGrid.selectedColor
|
|
}
|
|
}
|
|
|
|
StatusColorSelectorGrid {
|
|
id: colorSelectionGrid
|
|
anchors.top: selectedColor.bottom
|
|
anchors.topMargin: 10
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
titleText: "COLOR"
|
|
selectedColorIndex: 2
|
|
}
|
|
}
|