Compare commits

..

2 Commits

Author SHA1 Message Date
zhuzichu 40ce63e1df
Merge pull request #330 from kevinlq/main
FluNavigationView 组件增加了 tooltip 提示,交互更友好些。
2023-11-07 10:48:59 +08:00
kevinlq cc4abbf79f feat:The FluNavigationView component adds a Tooltip prompt to make the interaction more friendly. 2023-11-06 23:25:22 +08:00
2 changed files with 20 additions and 0 deletions

View File

@ -176,6 +176,11 @@ Item {
leftMargin: 6 leftMargin: 6
rightMargin: 6 rightMargin: 6
} }
FluTooltip {
text: model.title
visible: item_control.hovered && model.title && d.isCompact
delay: 400
}
MouseArea{ MouseArea{
anchors.fill: parent anchors.fill: parent
acceptedButtons: Qt.RightButton acceptedButtons: Qt.RightButton
@ -455,6 +460,11 @@ Item {
leftMargin: 6 leftMargin: 6
rightMargin: 6 rightMargin: 6
} }
FluTooltip {
text: model.title
visible: item_control.hovered && model.title && d.isCompact
delay: 400
}
onClicked:{ onClicked:{
if(type === 0){ if(type === 0){
if(model.onTapListener){ if(model.onTapListener){

View File

@ -177,6 +177,11 @@ Item {
leftMargin: 6 leftMargin: 6
rightMargin: 6 rightMargin: 6
} }
FluTooltip {
text: model.title
visible: item_control.hovered && model.title && d.isCompact
delay: 400
}
MouseArea{ MouseArea{
anchors.fill: parent anchors.fill: parent
acceptedButtons: Qt.RightButton acceptedButtons: Qt.RightButton
@ -458,6 +463,11 @@ Item {
leftMargin: 6 leftMargin: 6
rightMargin: 6 rightMargin: 6
} }
FluTooltip {
text: model.title
visible: item_control.hovered && model.title && d.isCompact
delay: 400
}
onClicked:{ onClicked:{
if(type === 0){ if(type === 0){
if(model.onTapListener){ if(model.onTapListener){