LoginSignup
0
0

More than 5 years have passed since last update.

GroupとHGroup/VGroupのレイアウト

Last updated at Posted at 2014-06-13

下記のようなレイアウトをしたい場合、GroupとHGroup/VGroup のプロパティの使い方を個人的に混乱しており、結構迷うので覚え書き。

layout.png

Layout.mxml
<s:Group width="100%">
    <s:HGroup>
        <s:Button label="A"/>
        <s:Button label="B"/>
    </s:HGroup>
    <s:HGroup right="10">
        <s:Button label="C"/>
        <s:Button label="D"/>
    </s:HGroup>
</s:Group>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0