You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Say that we are building a settings form. Such forms are often staggered, with sub-items indented further than their parent items:
Here, the two checkboxes are indented because they fall under the "Connection" section, and the two numeric steppers are indented further because they are only available when their respective checkbox is checked.
Such a simple layout requires a lot of tedious boilerplate in Feathers:
Say that we are building a settings form. Such forms are often staggered, with sub-items indented further than their parent items:
Here, the two checkboxes are indented because they fall under the "Connection" section, and the two numeric steppers are indented further because they are only available when their respective checkbox is checked.
Such a simple layout requires a lot of tedious boilerplate in Feathers:
Using this approach, we have to update the "topAnchorDisplayObject" every time we add new controls or change the order of existing controls.
It would be much simpler to build such a form if VerticalLayoutData had an
indent
property:The text was updated successfully, but these errors were encountered: