This commit is contained in:
zhuzihcu 2023-05-19 18:13:57 +08:00
parent 3eeaae24db
commit db41a7a1ee
3 changed files with 3 additions and 8 deletions

View File

@ -12,10 +12,6 @@ FluWindow {
property bool appBarVisible: true
default property alias content: container.data
Component.onCompleted: {
console.debug(FramelessUtils.frameBorderVisible)
}
FluAppBar {
id: title_bar
title: window.title

View File

@ -101,7 +101,6 @@ FluScrollablePage{
selected : appInfo.lang.objectName === modelData
text:modelData
onClicked:{
console.debug(modelData)
appInfo.changeLang(modelData)
}
}

View File

@ -16,6 +16,7 @@ Item {
property string title: ""
property FluObject items
property FluObject footerItems
property bool dontPageAnimation: false
property int displayMode: FluNavigationView.Auto
property Component autoSuggestBox
property Component actionItem
@ -482,7 +483,6 @@ Item {
if(item.idx<(nav_list.count - layout_footer.count)){
layout_footer.currentIndex = -1
}else{
console.debug(item.idx-(nav_list.count-layout_footer.count))
layout_footer.currentIndex = item.idx-(nav_list.count-layout_footer.count)
}
nav_list.currentIndex = item.idx
@ -563,7 +563,7 @@ Item {
properties: "y"
from: 0
to: nav_swipe.height
duration: 167
duration: dontPageAnimation ? 0 : 167
easing.type: Easing.BezierSpline
easing.bezierCurve: [ 1, 0, 0, 0 ]
}
@ -573,7 +573,7 @@ Item {
properties: "y";
from: nav_swipe.height;
to: 0
duration: 167
duration: dontPageAnimation ? 0 : 167
easing.type: Easing.BezierSpline
easing.bezierCurve: [ 0, 0, 0, 1 ]
}