This commit is contained in:
zhuzihcu
2023-03-06 18:22:36 +08:00
parent d9ed37d3af
commit cd86f66358
4 changed files with 32 additions and 0 deletions

View File

@ -48,6 +48,17 @@ Item {
}
}
}
FluText{
text:"夜间模式"
fontStyle: FluText.Subtitle
Layout.topMargin: 20
}
FluToggleSwitch{
checked: FluTheme.isDark
onClickFunc:function(){
FluTheme.isDark = !FluTheme.isDark
}
}
}
}
}