Null object as expander in xaml #2530
Answered
by
cwensley
Sonderwoods
asked this question in
Q&A
-
Hi, When generating an UI with code we can add null objects as expanding/stretching voids. How are these created using the xeto/xaml code? |
Beta Was this translation helpful? Give feedback.
Answered by
cwensley
Jul 24, 2023
Replies: 1 comment
-
For StackLayout: Hope this helps! |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Sonderwoods
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For StackLayout:
<StackLayoutItem Expand="True"/>
For TableLayout:
<TableRow ScaleHeight="True"/>
or<TableCell ScaleWidth="True"/>
For DynamicLayout:
<DynamicControl XScale="True"/>
or<DynamicControl YScale="True"/>
Hope this helps!