town.uiml 1.7 KB

1234567891011121314151617181920212223242526272829303132
  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. <button id="openShop" align-right="dungeonsTitle" align-bottom="heroes" width="100" height="30" margin="5">SHOP</button>
  26. <table id="dungeons" align-left="inventory" align-top="dungeonsTitle" margin="5" width="25%" height="80%">
  27. <tr>
  28. <text width="50%">NAME</text>
  29. <text width="50%">OWNER</text>
  30. </tr>
  31. </table>
  32. </view>