amalia/23-okt-25 #1

Merged
amaliadwiy merged 203 commits from amalia/23-okt-25 into join 2025-10-27 11:19:44 +08:00
230 changed files with 8464 additions and 2550 deletions
Showing only changes of commit 3de8e628b6 - Show all commits

View File

@@ -11,7 +11,7 @@ type Props = {
export default function ImageWithLabel({ src, label, onClick }: Props) {
return (
<TouchableOpacity style={[Styles.contentItemCenter, Styles.mh05, { width: 70 }]} onPress={onClick}>
<TouchableOpacity style={[Styles.contentItemCenter, Styles.mh03, { width: 55 }]} onPress={onClick}>
<ImageUser src={src} border />
<Text numberOfLines={1} ellipsizeMode="tail" style={[{ textAlign: 'center' }]}>{label}</Text>
</TouchableOpacity>

View File

@@ -94,6 +94,9 @@ const Styles = StyleSheet.create({
mv15: {
marginVertical: 15
},
mh03: {
marginHorizontal: 3
},
mh05: {
marginHorizontal: 5
},