Advertisement
Guest User

Untitled

a guest
May 27th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. Works:
  2. Row {
  3. spacing: 2
  4. Rectangle{
  5. color: "blue";
  6. width: 80;
  7. height:80;
  8. }
  9. Rectangle{
  10. color: "green";
  11. width: 80;
  12. height:80;
  13. }
  14. }
  15.  
  16.  
  17. does not work:
  18. Row {
  19. spacing: 2
  20. Rectangle{
  21. color: "blue";
  22. width: Theme.iconSizeLauncher.width;
  23. height:80;
  24. }
  25. Rectangle{
  26. color: "green";
  27. width: Theme.iconSizeLauncher.width;
  28. height:80;
  29. }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement