We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ceb59f commit 6b0a7b3Copy full SHA for 6b0a7b3
2 files changed
src/app/(tabs)/_layout.tsx
@@ -31,7 +31,10 @@ export default function TabLayout() {
31
headerLeft: headerLeft,
32
headerTitleAlign: 'center',
33
tabBarStyle: currentStyle?.schedule_background_style,
34
- headerStyle: currentStyle?.schedule_background_style,
+ headerStyle: [
35
+ currentStyle?.schedule_background_style,
36
+ { height: 120 },
37
+ ],
38
}}
39
/>
40
);
src/constants/tabBar.tsx
@@ -61,6 +61,7 @@ export const tabConfig: SinglePageType[] = [
61
name: 'setting',
62
title: '其他',
63
iconName: 'setting',
64
+ headerTitle: () => <Text style={commonStyles.fontLarge}>其他</Text>,
65
},
66
// {
67
// name: 'notification',
0 commit comments