23 lines
345 B
Plaintext
23 lines
345 B
Plaintext
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template Wince-HourRow : Gtk.ListBoxRow {
|
|
Gtk.Box {
|
|
orientation: horizontal;
|
|
margin-start: 12;
|
|
margin-end: 12;
|
|
margin-top: 12;
|
|
margin-bottom: 12;
|
|
hexpand: true;
|
|
|
|
Gtk.Label dayOfWeek {
|
|
halign: start;
|
|
}
|
|
|
|
Gtk.Label hours {
|
|
halign: end;
|
|
hexpand: true;
|
|
}
|
|
}
|
|
}
|