Split template files. Added full hours support

This commit is contained in:
2022-12-21 21:32:37 -08:00
parent a768f4732e
commit 0c0f7d881e
12 changed files with 152 additions and 77 deletions

View File

@@ -0,0 +1,27 @@
using Gtk 4.0;
using Adw 1;
template Wince-BusinessRow : Gtk.ListBoxRow {
Gtk.Box {
orientation: vertical;
margin-start: 24;
margin-top: 12;
margin-bottom: 12;
Gtk.Label businessName {
styles ["heading"]
xalign: 0;
}
Gtk.Box {
orientation: horizontal;
halign: start;
spacing: 12;
Gtk.Label businessRating {
}
Gtk.Label businessDistance {
}
}
}
}