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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<?xml version="1.0" encoding="UTF-8"?>
<interface>
<requires lib="gtk" version="4.0"/>
<requires lib="libadwaita" version="1.0"/>
<object class="GtkBox" id="widget">
<property name="spacing">12</property>
<property name="width-request">400</property>
<child>
<object class="AdwBreakpointBin">
<property name="width-request">150</property>
<property name="height-request">100</property>
<property name="hexpand">True</property>
<style>
<class name="docs-background"/>
</style>
<property name="child">
<object class="GtkLabel" id="child1">
<property name="label">Wide</property>
<style>
<class name="title-1"/>
</style>
</object>
</property>
<child>
<object class="AdwBreakpoint">
<condition>max-width: 200px</condition>
<setter object="child1" property="label">Narrow</setter>
</object>
</child>
</object>
</child>
<child>
<object class="AdwBreakpointBin">
<property name="width-request">150</property>
<property name="height-request">100</property>
<style>
<class name="docs-background"/>
</style>
<property name="child">
<object class="GtkLabel" id="child2">
<property name="label">Wide</property>
<style>
<class name="title-1"/>
</style>
</object>
</property>
<child>
<object class="AdwBreakpoint">
<condition>max-width: 200px</condition>
<setter object="child2" property="label">Narrow</setter>
</object>
</child>
</object>
</child>
</object>
</interface>
|