Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuzichu520 committed Apr 19, 2023
1 parent 88fed82 commit 60c2ebe
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 6 deletions.
64 changes: 58 additions & 6 deletions example/page/AboutPage.qml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ FluWindow {

id:window

width: 500
width: 600
height: 600
minimumWidth: 500
minimumWidth: 600
minimumHeight: 600
maximumWidth: 500
maximumWidth: 600
maximumHeight: 600
launchMode: FluWindow.SingleTask

Expand Down Expand Up @@ -60,7 +60,6 @@ FluWindow {

RowLayout{
spacing: 14
Layout.topMargin: 20
Layout.leftMargin: 15
FluText{
text:"GitHub:"
Expand All @@ -74,13 +73,28 @@ FluWindow {
}
}
}

RowLayout{
spacing: 14
Layout.leftMargin: 15
FluText{
text:"B站:"
}
FluTextButton{
text:"https://www.bilibili.com/video/BV1mg4y1M71w/"
Layout.alignment: Qt.AlignBottom
onClicked: {
Qt.openUrlExternally(text)
}
}
}

RowLayout{
spacing: 14
Layout.topMargin: 20
Layout.leftMargin: 15
FluText{
id:text_info
text:"如果该项目对你有作用,就请点击上方链接给一个免费的star吧"
text:"如果该项目对你有作用,就请点击上方链接给一个免费的star,或者一键三连,谢谢"
ColorAnimation {
id: animation
target: text_info
Expand All @@ -94,5 +108,43 @@ FluWindow {
}
}
}

RowLayout{
spacing: 14
Layout.leftMargin: 15
FluText{
text:"捐赠:"
}
}

Item{
Layout.preferredWidth: parent.width
Layout.preferredHeight: 252
Row{
anchors.horizontalCenter: parent.horizontalCenter
spacing: 60
Image{
width: 164.55
height: 224.25
source: "qrc:/res/image/qrcode_wx.jpg"
}
Image{
width: 162
height: 252
source: "qrc:/res/image/qrcode_zfb.jpg"
}
}
}

RowLayout{
spacing: 14
Layout.leftMargin: 15
FluText{
id:text_desc
text:"个人开发,维护不易,你们的捐赠就是我继续更新的动力!\n有什么问题提Issues,只要时间充足我就会解决的!!"
}
}


}
}
2 changes: 2 additions & 0 deletions example/qml.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -166,5 +166,7 @@
<file>page/SingleTaskWindow.qml</file>
<file>page/SingleInstanceWindow.qml</file>
<file>T_RatingControl.qml</file>
<file>res/image/qrcode_wx.jpg</file>
<file>res/image/qrcode_zfb.jpg</file>
</qresource>
</RCC>
Binary file added example/res/image/qrcode_wx.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added example/res/image/qrcode_zfb.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 60c2ebe

Please sign in to comment.