Add layouts

This commit is contained in:
James Westman 2021-10-30 20:03:37 -05:00
parent cc3ee76dc2
commit c155ba7b15
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
3 changed files with 67 additions and 4 deletions

View file

@ -243,3 +243,21 @@ on one line. The action and icon are optional.
menu {
item _("Copy") "app.copy" "copy-symbolic";
}
Layout Properties
-----------------
Basic Usage
~~~~~~~~~~~
.. code-block::
Gtk.Grid {
Gtk.Label {
layout {
row: 0;
column: 1;
}
}
}