Advertisement
PlotnikovPhilipp

Untitled

May 21st, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. import QtQuick 2.9
  2. import QtQuick.Window 2.3
  3. import areaOfDrop 1.0
  4.  
  5. Window {
  6. visible: true
  7. maximumWidth: Screen.desktopAvailableWidth
  8. minimumWidth: Screen.desktopAvailableWidth
  9. maximumHeight: Screen.desktopAvailableHeight
  10. minimumHeight: Screen.desktopAvailableHeight
  11. title: "MediaQuest"
  12.  
  13. Rectangle {
  14. anchors.fill: parent
  15. color: "black";
  16. }
  17.  
  18. AreaOfDrop {
  19. style: "width: 200px; height: 200px; background-color: white;"
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement