16 lines
246 B
Plaintext
16 lines
246 B
Plaintext
|
using Gtk 4.0;
|
||
|
|
||
|
template $RealmRow {
|
||
|
layout-manager: BoxLayout {
|
||
|
orientation: horizontal;
|
||
|
};
|
||
|
Label nameLabel {
|
||
|
xalign: 0;
|
||
|
label: bind template.realm as <$Realm>.name;
|
||
|
styles [
|
||
|
"heading",
|
||
|
"dim-label",
|
||
|
]
|
||
|
}
|
||
|
}
|