mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
18 lines
232 B
Text
18 lines
232 B
Text
using Gtk 4.0;
|
|
|
|
template $MyTemplate: Label {
|
|
/**
|
|
* A list of strings.
|
|
*/
|
|
StringList {
|
|
// comment
|
|
strings [
|
|
'Hello',
|
|
C_('Greeting', 'World'),
|
|
]
|
|
}
|
|
|
|
object: Button {
|
|
label: 'Click me';
|
|
};
|
|
}
|