This commit is contained in:
zhuzichu
2023-06-19 17:50:54 +08:00
parent b829fa572f
commit 103dbe9d56
7 changed files with 46 additions and 26 deletions

View File

@ -33,12 +33,14 @@ FluScrollablePage{
indeterminate: false
}
FluSlider{
value:50
onValueChanged:{
var progress = value/100
progress_bar.progress = progress
progress_ring.progress = progress
}
Component.onCompleted: {
value = 50
}
}
}
}

View File

@ -87,7 +87,7 @@ FluScrollablePage{
text:"删除"
horizontalPadding: 6
onClicked:{
table_view.remove(dataModel.index)
tableView.remove(dataModel.index)
}
}
}