town.uiml 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. <view>
  2. <button id="back" width="150" height="26" align-top="start" align-left="start" margin="5">ZURÜCK</button>
  3. <text id="title" width="75%" height="100" font-size="24" text-align="center">TOWN</text>
  4. <text id="heroesTitle" align-left="start" align-top="title" margin="5" width="25%" height="26">YOUR HEROES</text>
  5. <table id="heroes" align-left="start" align-top="heroesTitle" margin="5" width="25%" height="35%">
  6. <tr>
  7. <text width="100%">NAME</text>
  8. </tr>
  9. </table>
  10. <button id="openTavern" align-left="start" align-top="heroes" width="150" height="30" margin="5">TAVERNE</button>
  11. <text id="ownDungeonsTitle" align-left="start" align-top="openTavern" margin="5" width="25%" height="26">YOUR OWN DUNGEONS</text>
  12. <table id="ownDungeons" align-left="start" align-top="ownDungeonsTitle" margin="5" width="25%" height="35%">
  13. <tr>
  14. <text width="100%">NAME</text>
  15. </tr>
  16. </table>
  17. <text id="money" align-left="heroes" align-bottom="inventoryTitle" margin="5" width="25%" height="26"></text>
  18. <text id="inventoryTitle" align-left="heroes" align-top="title" margin="5" width="25%" height="26">YOUR INVENTORY</text>
  19. <table id="inventory" align-left="heroes" align-top="inventoryTitle" margin="5" width="25%" height="80%">
  20. <tr>
  21. <text width="100%">NAME</text>
  22. </tr>
  23. </table>
  24. <text id="dungeonsTitle" align-left="inventory" align-top="title" margin="5" width="25%" height="26">ALL DUNGEONS</text>
  25. <table id="dungeons" align-left="inventory" align-top="dungeonsTitle" margin="5" width="25%" height="80%">
  26. <tr>
  27. <text width="50%">NAME</text>
  28. <text width="50%">OWNER</text>
  29. </tr>
  30. </table>
  31. </view>