-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.qml
36 lines (32 loc) · 877 Bytes
/
main.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import QtQuick 2.12
import QtQuick.Controls 2.12
ApplicationWindow {
width: 450
height: 200
visible: true
title: qsTr("Color Sampler")
Rectangle {
x: 50
y: 50
Row {
spacing: 20
Rectangle {
id: sampleRect
width: height
height: 100
color: colorValueInput.text
border.width: 2
radius: 15
}
TextField {
id: colorValueInput
anchors.verticalCenter: parent.verticalCenter
font.pointSize: 12
maximumLength: 25
width: 250
inputMethodHints: Qt.ImhPreferLowercase
placeholderText: qsTr("enter a color name or #hex")
}
}
}
}