Add send btn

This commit is contained in:
ranfdev
2023-10-24 16:19:19 +02:00
parent a88308d67a
commit 82c205b150
5 changed files with 44 additions and 23 deletions

View File

@ -10,5 +10,6 @@
</gresource>
<gresource prefix="/com/ranfdev/Notify/icons/16x16/status/">
<file preprocess="xml-stripblanks" alias="dice3-symbolic.svg">../icons/dice3-symbolic.svg</file>
<file preprocess="xml-stripblanks" alias="paper-plane-symbolic.svg">../icons/paper-plane-symbolic.svg</file>
</gresource>
</gresources>

View File

@ -132,8 +132,19 @@ template $NotifyWindow : Adw.ApplicationWindow {
margin-start: 8;
margin-end: 8;
Adw.Clamp {
Entry entry {
placeholder-text: "Message...";
Gtk.Box {
spacing: 8;
Entry entry {
placeholder-text: "Message...";
hexpand: true;
}
Gtk.Button send_btn {
styles [
"circular",
"suggested-action"
]
icon-name: "paper-plane-symbolic";
}
}
}
}