Advertisement
Guest User

Untitled

a guest
Dec 10th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.24 KB | None | 0 0
  1. Rectangle {
  2.  
  3.     id: root
  4.     property double input_data: 0.0
  5.    
  6.     Text {
  7.         x: 1; y: 1; z: 2
  8.         text: "Property"
  9.         color: "white"
  10.         font.pixelSize: 16
  11.     }
  12.       TextField {
  13.         text: input_data
  14.     }
  15.  
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement