12345678910111213141516171819202122232425262728 |
- <view>
- <text id="title" width="75%" height="100">Town</text>
- <text id="heroesTitle" align-left="start" align-top="title" margin="5" width="25%" height="36">your heroes</text>
- <table id="heroes" align-left="start" align-top="heroesTitle" margin="5" width="25%" height="35%">
- <tr>
- <text>name</text>
- </tr>
- </table>
- <text id="ownDungeonsTitle" align-left="start" align-top="heroes" margin-left="5" margin-top="5" width="25%" height="36">your own dungeons</text>
- <table id="ownDungeons" align-left="start" align-top="ownDungeonsTitle" margin="5" width="25%" height="35%">
- <tr>
- <text>name</text>
- </tr>
- </table>
- <text id="inventoryTitle" align-left="heroes" align-top="title" margin="5" width="25%" height="36">your own dungeons</text>
- <table id="inventory" align-left="heroes" align-top="inventoryTitle" margin="5" width="25%" height="80%">
- <tr>
- <text>name</text>
- </tr>
- </table>
- <text id="dungeonsTitle" align-left="inventory" align-top="title" margin="5" width="25%" height="36">your own dungeons</text>
- <table id="dungeons" align-left="inventory" align-top="dungeonsTitle" margin="5" width="25%" height="80%">
- <tr>
- <text>name</text>
- <text>owner</text>
- </tr>
- </table>
- </view>
|