- 删除目标管理演示页面的代码,简化项目结构 - 更新底部导航,移除目标管理演示页面的路由 - 调整相关组件的样式和逻辑,确保界面一致性 - 优化颜色常量的使用,提升视觉效果
90 lines
1.7 KiB
TypeScript
90 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
import Animated, { FadeIn, FadeOut } from 'react-native-reanimated';
|
|
|
|
interface HealthDataCardProps {
|
|
title: string;
|
|
value: string;
|
|
unit: string;
|
|
icon: React.ReactNode;
|
|
style?: object;
|
|
}
|
|
|
|
const HealthDataCard: React.FC<HealthDataCardProps> = ({
|
|
title,
|
|
value,
|
|
unit,
|
|
icon,
|
|
style
|
|
}) => {
|
|
return (
|
|
<Animated.View
|
|
entering={FadeIn.duration(300)}
|
|
exiting={FadeOut.duration(300)}
|
|
style={[styles.card, style]}
|
|
>
|
|
|
|
<View style={styles.iconContainer}>
|
|
{icon}
|
|
</View>
|
|
<View style={styles.content}>
|
|
<Text style={styles.title}>{title}</Text>
|
|
<View style={styles.valueContainer}>
|
|
<Text style={styles.value}>{value}</Text>
|
|
<Text style={styles.unit}>{unit}</Text>
|
|
</View>
|
|
</View>
|
|
</Animated.View>
|
|
);
|
|
};
|
|
|
|
const styles = StyleSheet.create({
|
|
card: {
|
|
borderRadius: 16,
|
|
shadowColor: '#000',
|
|
paddingHorizontal: 16,
|
|
shadowOffset: {
|
|
width: 0,
|
|
height: 2,
|
|
},
|
|
shadowOpacity: 0.1,
|
|
shadowRadius: 3.84,
|
|
elevation: 5,
|
|
marginVertical: 8,
|
|
flexDirection: 'row',
|
|
alignItems: 'center',
|
|
},
|
|
iconContainer: {
|
|
marginRight: 16,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
content: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
},
|
|
title: {
|
|
fontSize: 14,
|
|
color: '#666',
|
|
marginBottom: 4,
|
|
fontWeight: '600',
|
|
},
|
|
valueContainer: {
|
|
flexDirection: 'row',
|
|
alignItems: 'flex-end',
|
|
},
|
|
value: {
|
|
fontSize: 24,
|
|
fontWeight: '800',
|
|
color: '#192126',
|
|
},
|
|
unit: {
|
|
fontSize: 14,
|
|
color: '#666',
|
|
marginLeft: 4,
|
|
marginBottom: 2,
|
|
fontWeight: '500',
|
|
},
|
|
});
|
|
|
|
export default HealthDataCard; |