设置主题颜色,不同页面页眉颜色不一致 #1157
Answered
by
woyaodangrapper
woyaodangrapper
asked this question in
Q&A
-
操作复现
|
Beta Was this translation helpful? Give feedback.
Answered by
woyaodangrapper
Jul 10, 2025
Replies: 1 comment
-
// composables/useTheme.ts /* 设置导航栏颜色 */
useNavigationBarColor(color?: {
frontColor?: string
backgroundColor?: string
}) {
onShow(() => {
uni.setNavigationBarColor({
frontColor: color?.frontColor ?? this.theme === 'light' ? '#000000' : '#ffffff',
backgroundColor: color?.backgroundColor ?? this.theme === 'light' ? '#f3f4f6' : '#212121',
})
})
}, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
woyaodangrapper
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// composables/useTheme.ts