diff --git a/example/page/AboutPage.qml b/example/page/AboutPage.qml index f3b0a55..f0dce35 100644 --- a/example/page/AboutPage.qml +++ b/example/page/AboutPage.qml @@ -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 @@ -60,7 +60,6 @@ FluWindow { RowLayout{ spacing: 14 - Layout.topMargin: 20 Layout.leftMargin: 15 FluText{ text:"GitHub:" @@ -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 @@ -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,只要时间充足我就会解决的!!" + } + } + + } } diff --git a/example/qml.qrc b/example/qml.qrc index 00b00a8..bc44825 100644 --- a/example/qml.qrc +++ b/example/qml.qrc @@ -166,5 +166,7 @@ page/SingleTaskWindow.qml page/SingleInstanceWindow.qml T_RatingControl.qml + res/image/qrcode_wx.jpg + res/image/qrcode_zfb.jpg diff --git a/example/res/image/qrcode_wx.jpg b/example/res/image/qrcode_wx.jpg new file mode 100644 index 0000000..893eaff Binary files /dev/null and b/example/res/image/qrcode_wx.jpg differ diff --git a/example/res/image/qrcode_zfb.jpg b/example/res/image/qrcode_zfb.jpg new file mode 100644 index 0000000..e7626f2 Binary files /dev/null and b/example/res/image/qrcode_zfb.jpg differ