fix: 末行单卡片居中 + 卡片高度不一致

- columnWrapperStyle justifyContent 改为 flex-start,末行单卡片靠左
- title 固定 height: 32px(2行 × lineHeight 16),
  使每张卡片 info 区高度相同,消除高度不一致
This commit is contained in:
Developer
2026-03-10 21:14:24 +08:00
parent 621fbebc08
commit 836b2ceb28
2 changed files with 2 additions and 2 deletions

View File

@@ -161,7 +161,7 @@ const styles = StyleSheet.create({
backgroundColor: '#00AEEC',
borderRadius: 1,
},
row: { paddingHorizontal: 8, justifyContent:'center' },
row: { paddingHorizontal: 8, justifyContent: 'flex-start' },
leftCol: { marginLeft: 4, marginRight: 2 },
rightCol: { marginLeft: 2, marginRight: 4 },
footer: { height: 48, alignItems: 'center', justifyContent: 'center' },