- 在 AI 体态评估页面中集成相机和相册权限请求逻辑 - 更新 app.json 和 Info.plist,添加相应的权限说明 - 修改布局以支持照片上传功能,用户可上传正面、侧面和背面照片 - 更新 package.json 和 package-lock.json,添加 expo-image-picker 依赖
213 lines
7.1 KiB
TypeScript
213 lines
7.1 KiB
TypeScript
import * as Haptics from 'expo-haptics';
|
|
import { Tabs, usePathname } from 'expo-router';
|
|
import React from 'react';
|
|
import { Text, TouchableOpacity, View } from 'react-native';
|
|
|
|
import { IconSymbol } from '@/components/ui/IconSymbol';
|
|
import { Colors } from '@/constants/Colors';
|
|
import { TAB_BAR_BOTTOM_OFFSET, TAB_BAR_HEIGHT } from '@/constants/TabBar';
|
|
import { useColorScheme } from '@/hooks/useColorScheme';
|
|
|
|
export default function TabLayout() {
|
|
const theme = (useColorScheme() ?? 'light') as 'light' | 'dark';
|
|
const colorTokens = Colors[theme];
|
|
const pathname = usePathname();
|
|
|
|
return (
|
|
<Tabs
|
|
screenOptions={({ route }) => {
|
|
const routeName = route.name;
|
|
const isSelected = (routeName === 'index' && pathname === '/') ||
|
|
(routeName === 'explore' && pathname === '/explore') ||
|
|
pathname.includes(routeName);
|
|
|
|
return {
|
|
headerShown: false,
|
|
tabBarActiveTintColor: colorTokens.tabIconSelected,
|
|
tabBarButton: (props) => {
|
|
const { onPress } = props;
|
|
|
|
const handlePress = (event: any) => {
|
|
if (process.env.EXPO_OS === 'ios') {
|
|
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light);
|
|
}
|
|
onPress && onPress(event);
|
|
};
|
|
|
|
// 基于 routeName 设置图标与标题,避免 tabBarIcon 的包装导致文字裁剪
|
|
const getIconAndTitle = () => {
|
|
switch (routeName) {
|
|
case 'index':
|
|
return { icon: 'house.fill', title: '首页' } as const;
|
|
case 'explore':
|
|
return { icon: 'paperplane.fill', title: '探索' } as const;
|
|
case 'personal':
|
|
return { icon: 'person.fill', title: '个人' } as const;
|
|
default:
|
|
return { icon: 'circle', title: '' } as const;
|
|
}
|
|
};
|
|
|
|
const { icon, title } = getIconAndTitle();
|
|
const activeContentColor = colorTokens.onPrimary;
|
|
const inactiveContentColor = colorTokens.tabIconDefault;
|
|
|
|
return (
|
|
<TouchableOpacity
|
|
onPress={handlePress}
|
|
accessibilityRole="button"
|
|
style={{
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
flexDirection: 'row',
|
|
marginHorizontal: 6,
|
|
marginVertical: 10,
|
|
borderRadius: 25,
|
|
backgroundColor: isSelected ? colorTokens.tabBarActiveBackground : 'transparent',
|
|
paddingHorizontal: isSelected ? 16 : 10,
|
|
paddingVertical: 8,
|
|
}}
|
|
>
|
|
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
<IconSymbol
|
|
size={22}
|
|
name={icon as any}
|
|
color={isSelected ? activeContentColor : inactiveContentColor}
|
|
/>
|
|
{isSelected && !!title && (
|
|
<Text
|
|
style={{
|
|
color: activeContentColor,
|
|
fontSize: 12,
|
|
fontWeight: '600',
|
|
marginLeft: 6,
|
|
}}
|
|
// 选中态下不限制行数,避免大屏布局下被裁剪成省略号
|
|
numberOfLines={0 as any}
|
|
>
|
|
{title}
|
|
</Text>
|
|
)}
|
|
</View>
|
|
</TouchableOpacity>
|
|
);
|
|
},
|
|
tabBarStyle: {
|
|
position: 'absolute',
|
|
bottom: TAB_BAR_BOTTOM_OFFSET,
|
|
height: TAB_BAR_HEIGHT,
|
|
borderRadius: 34,
|
|
backgroundColor: colorTokens.tabBarBackground,
|
|
shadowColor: '#000',
|
|
shadowOffset: { width: 0, height: 2 },
|
|
shadowOpacity: 0.2,
|
|
shadowRadius: 10,
|
|
elevation: 5,
|
|
paddingHorizontal: 10,
|
|
paddingTop: 0,
|
|
paddingBottom: 0,
|
|
marginHorizontal: 20,
|
|
width: '90%',
|
|
alignSelf: 'center',
|
|
},
|
|
tabBarItemStyle: {
|
|
backgroundColor: 'transparent',
|
|
height: TAB_BAR_HEIGHT,
|
|
marginTop: 0,
|
|
marginBottom: 0,
|
|
paddingTop: 0,
|
|
paddingBottom: 0,
|
|
},
|
|
tabBarShowLabel: false,
|
|
};
|
|
}}>
|
|
<Tabs.Screen
|
|
name="index"
|
|
options={{
|
|
title: '首页',
|
|
tabBarIcon: ({ color }) => {
|
|
const isHomeSelected = pathname === '/' || pathname === '/index';
|
|
return (
|
|
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
<IconSymbol size={22} name="house.fill" color={color} />
|
|
{isHomeSelected && (
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
color: color,
|
|
fontSize: 12,
|
|
fontWeight: '600',
|
|
marginLeft: 6,
|
|
textAlign: 'center',
|
|
flexShrink: 0,
|
|
}}>
|
|
首页
|
|
</Text>
|
|
)}
|
|
</View>
|
|
);
|
|
},
|
|
}}
|
|
/>
|
|
<Tabs.Screen
|
|
name="explore"
|
|
options={{
|
|
title: '探索',
|
|
tabBarIcon: ({ color }) => {
|
|
const isExploreSelected = pathname === '/explore';
|
|
return (
|
|
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
<IconSymbol size={22} name="paperplane.fill" color={color} />
|
|
{isExploreSelected && (
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
color: color,
|
|
fontSize: 12,
|
|
fontWeight: '600',
|
|
marginLeft: 6,
|
|
textAlign: 'center',
|
|
flexShrink: 0,
|
|
}}>
|
|
探索
|
|
</Text>
|
|
)}
|
|
</View>
|
|
);
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<Tabs.Screen
|
|
name="personal"
|
|
options={{
|
|
title: '个人',
|
|
tabBarIcon: ({ color }) => {
|
|
const isPersonalSelected = pathname === '/personal';
|
|
return (
|
|
<View style={{ flexDirection: 'row', alignItems: 'center' }}>
|
|
<IconSymbol size={22} name="person.fill" color={color} />
|
|
{isPersonalSelected && (
|
|
<Text
|
|
numberOfLines={1}
|
|
style={{
|
|
color: color,
|
|
fontSize: 12,
|
|
fontWeight: '600',
|
|
marginLeft: 6,
|
|
textAlign: 'center',
|
|
flexShrink: 0,
|
|
}}>
|
|
个人
|
|
</Text>
|
|
)}
|
|
</View>
|
|
);
|
|
},
|
|
}}
|
|
/>
|
|
</Tabs>
|
|
);
|
|
}
|