25 lines
444 B
Plaintext
25 lines
444 B
Plaintext
export component Message inherits Rectangle {
|
|
in property <string> sender;
|
|
in property <string> time;
|
|
in property <string> text;
|
|
|
|
VerticalLayout {
|
|
padding-top: 12px;
|
|
|
|
Text {
|
|
text: sender + " " + time;
|
|
|
|
x: 12px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
Text {
|
|
text: text;
|
|
|
|
x: 24px;
|
|
font-size: 16px;
|
|
wrap: word-wrap;
|
|
}
|
|
}
|
|
}
|