1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<requires lib="libadwaita" version="1.0"/>
<object class="AdwWindow" id="widget">
<property name="default-width">200</property>
<property name="default-height">150</property>
<property name="width-request">-1</property>
<property name="height-request">-1</property>
<property name="content">
<object class="AdwSqueezer">
<child>
<object class="GtkLabel">
<property name="label">Very Wide Child</property>
<property name="margin-start">12</property>
<property name="margin-end">12</property>
<style>
<class name="title-1"/>
</style>
</object>
</child>
<child>
<object class="GtkLabel">
<property name="label">Narrow Child</property>
<property name="margin-start">12</property>
<property name="margin-end">12</property>
<style>
<class name="title-2"/>
</style>
</object>
</child>
</object>
</property>
</object>
</interface>
|