Advertisement
Guest User

Untitled

a guest
Nov 4th, 2018
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.34 KB | None | 0 0
  1. import QtQuick 2.11
  2. import QtQuick.Window 2.11
  3. import QtQuick.Controls 2.4
  4. import QtQuick.Controls.Material 2.3
  5.  
  6. Window {
  7.     Material.theme: Material.Dark
  8.     visible: true
  9.     width: 640
  10.     height: 480
  11.     title: qsTr("Hello World")
  12.     color: "black"
  13.     Button {
  14.         anchors.centerIn: parent
  15.         text: "Press"
  16.     }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement