-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshare.qml
55 lines (49 loc) · 1.34 KB
/
share.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import QtQuick 2.0
import QtQuick.Controls 2.2
Rectangle{
color: "transparent"
Row {
anchors.centerIn: parent
spacing: 10
RoundButton {
icon.source: "images/img_airdrop.png"
icon.width: 100
icon.height: 100
width: 100
height: 100
anchors.verticalCenter: parent.verticalCenter
}
RoundButton {
icon.source: "images/img_facebook.png"
icon.width: 80
icon.height: 80
width: 100
height: 100
anchors.verticalCenter: parent.verticalCenter
}
RoundButton {
icon.source: "images/img_twitter.png"
icon.width: 80
icon.height: 80
width: 100
height: 100
anchors.verticalCenter: parent.verticalCenter
}
RoundButton {
icon.source: "images/img_instagram.png"
icon.width: 80
icon.height: 80
width: 100
height: 100
anchors.verticalCenter: parent.verticalCenter
}
RoundButton {
icon.source: "images/img_link.png"
icon.width: 80
icon.height: 80
width: 100
height: 100
anchors.verticalCenter: parent.verticalCenter
}
}
}