FIX: Languages row minimum height

This commit is contained in:
Marcos Rodriguez Velez 2024-04-21 20:06:15 -04:00
parent f361c69b4b
commit 44ea632e2e
No known key found for this signature in database
GPG Key ID: 6030B2F48CCE86D7

View File

@ -14,6 +14,7 @@ const styles = StyleSheet.create({
flex: {
flex: 1,
},
row: { minHeight: 60 },
});
const Language = () => {
@ -51,6 +52,7 @@ const Language = () => {
title={item.label}
checkmark={language === item.value}
onPress={() => onLanguageSelect(item)}
containerStyle={styles.row}
/>
);
};