27 lines
448 B
Plaintext
27 lines
448 B
Plaintext
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
template Wince-BusinessRow : Gtk.ListBoxRow {
|
|
styles ["card"]
|
|
margin-bottom: 14;
|
|
Gtk.Box {
|
|
orientation: vertical;
|
|
margin-start: 8;
|
|
margin-top: 8;
|
|
|
|
Gtk.Label businessName {
|
|
styles ["heading"]
|
|
xalign: 0;
|
|
}
|
|
|
|
Gtk.Label businessRating {
|
|
xalign: 0;
|
|
}
|
|
Gtk.Label businessHours {
|
|
xalign: 0;
|
|
}
|
|
Gtk.LinkButton businessWebsite {
|
|
halign: start;
|
|
}
|
|
}
|
|
} |