town.uiml 1.2 KB

12345678910111213141516171819202122232425262728
  1. <view>
  2. <text id="title" width="75%" height="100">Town</text>
  3. <text id="heroesTitle" align-left="start" align-top="title" margin="5" width="25%" height="36">your heroes</text>
  4. <table id="heroes" align-left="start" align-top="heroesTitle" margin="5" width="25%" height="35%">
  5. <tr>
  6. <text>name</text>
  7. </tr>
  8. </table>
  9. <text id="ownDungeonsTitle" align-left="start" align-top="heroes" margin-left="5" margin-top="5" width="25%" height="36">your own dungeons</text>
  10. <table id="ownDungeons" align-left="start" align-top="ownDungeonsTitle" margin="5" width="25%" height="35%">
  11. <tr>
  12. <text>name</text>
  13. </tr>
  14. </table>
  15. <text id="inventoryTitle" align-left="heroes" align-top="title" margin="5" width="25%" height="36">your own dungeons</text>
  16. <table id="inventory" align-left="heroes" align-top="inventoryTitle" margin="5" width="25%" height="80%">
  17. <tr>
  18. <text>name</text>
  19. </tr>
  20. </table>
  21. <text id="dungeonsTitle" align-left="inventory" align-top="title" margin="5" width="25%" height="36">your own dungeons</text>
  22. <table id="dungeons" align-left="inventory" align-top="dungeonsTitle" margin="5" width="25%" height="80%">
  23. <tr>
  24. <text>name</text>
  25. <text>owner</text>
  26. </tr>
  27. </table>
  28. </view>