33 lines
570 B
Plaintext
33 lines
570 B
Plaintext
using Gtk 4.0;
|
|
using Adw 1;
|
|
|
|
Adw.ApplicationWindow mainWindow {
|
|
title: "Wince";
|
|
default-width: 400;
|
|
default-height: 500;
|
|
|
|
Gtk.Box {
|
|
orientation: vertical;
|
|
|
|
Adw.HeaderBar {}
|
|
|
|
Gtk.Box {
|
|
orientation: horizontal;
|
|
margin-top: 10;
|
|
margin-start: 14;
|
|
margin-end: 14;
|
|
|
|
styles ["linked"]
|
|
|
|
Gtk.Entry searchEntry {
|
|
placeholder-text: "Search";
|
|
}
|
|
Gtk.Entry locationEntry {
|
|
placeholder-text: "Location";
|
|
}
|
|
Gtk.Button searchButton {
|
|
icon-name: "edit-find";
|
|
}
|
|
}
|
|
}
|
|
} |