BikeApp_demoss/App.tsx

86 lines
2.7 KiB
TypeScript
Raw Normal View History

2024-11-07 17:47:25 +08:00
import * as React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createBottomTabNavigator } from '@react-navigation/bottom-tabs';
2024-11-12 09:34:25 +08:00
import { View, StyleSheet, Image, Platform } from 'react-native';
2024-11-07 17:47:25 +08:00
import ShopScreens from './src/views/ShopScreen';
import ProfileScreens from './src/views/ProfileScreen';
import 'react-native-gesture-handler';
import { enableScreens } from 'react-native-screens';
2024-11-12 09:34:25 +08:00
import HomeStackNavigator from './src/views/HomeStackNavigator';
import { getFocusedRouteNameFromRoute } from '@react-navigation/native';
2024-11-07 17:47:25 +08:00
enableScreens();
2024-11-07 17:47:25 +08:00
type RootStackParamList = {
'爱车': undefined;
'商城': undefined;
'个人中心': undefined;
};
2024-11-07 17:47:25 +08:00
const Tab = createBottomTabNavigator<RootStackParamList>();
2024-11-07 17:47:25 +08:00
function App() {
2024-11-12 09:34:25 +08:00
const getTabBarVisibility = (route: any) => {
const routeName = getFocusedRouteNameFromRoute(route) ?? 'Home';
const showOnScreens = ['Home']; // 只在 Home 页面显示底部导航栏
return showOnScreens.includes(routeName) ? 'flex' : 'none';
};
return (
2024-11-07 17:47:25 +08:00
<NavigationContainer>
<Tab.Navigator screenOptions={{ headerShown: false }}>
2024-11-12 09:34:25 +08:00
<Tab.Screen
2024-11-07 17:47:25 +08:00
name="爱车"
2024-11-12 09:34:25 +08:00
component={HomeStackNavigator}
options={({ route }) => ({
2024-11-07 17:47:25 +08:00
tabBarIcon: ({ color, size }) => (
<Image
source={{ uri: 'https://lxnapi.ccttiot.com/bike/img/static/unny4QdTukoNl8fZYtkf' }}
style={{ width: size, height: size, tintColor: color }}
resizeMode="contain"
/>
),
2024-11-12 09:34:25 +08:00
tabBarStyle: {
display: getTabBarVisibility(route)
}
})}
2024-11-07 17:47:25 +08:00
/>
<Tab.Screen
name="商城"
component={ShopScreens}
options={{
tabBarIcon: ({ color, size }) => (
<Image
source={{ uri: 'https://lxnapi.ccttiot.com/bike/img/static/uqJNRvkwMS4ndouxoYlX' }}
style={{ width: size, height: size, tintColor: color }}
resizeMode="contain"
/>
),
}}
/>
<Tab.Screen
name="个人中心"
component={ProfileScreens}
options={{
tabBarIcon: ({ color, size }) => (
<Image
source={{ uri: 'https://lxnapi.ccttiot.com/bike/img/static/uroSSfFVSob2kEvqTaD4' }}
style={{ width: size, height: size, tintColor: color }}
resizeMode="contain"
/>
),
}}
/>
</Tab.Navigator>
</NavigationContainer>
);
}
const styles = StyleSheet.create({
2024-11-07 17:47:25 +08:00
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
});
2024-11-12 09:34:25 +08:00
export default App;