細かいレイアウト調整

This commit is contained in:
harukin-expo-dev-env
2024-12-27 03:28:24 +00:00
parent d1be37e3be
commit e29b4f5da3
3 changed files with 21 additions and 13 deletions

View File

@@ -83,11 +83,15 @@ export const TrainIconStatus: FC<Props> = ({ data, navigate, from }) => {
{move ? (
<Image
source={{ uri: trainIcon }}
style={{ height: 30, width: 25, margin: 5 }}
style={{ height: 34, width: 30, marginRight: 5 }}
resizeMethod="scale"
/>
) : (
<Ionicons {...anpanmanStatus} size={30} style={{ margin: 5 }} />
<Ionicons
{...anpanmanStatus}
size={30}
style={{ marginRight: 5 }}
/>
)}
</TouchableOpacity>
)}