Add pw text in settings and extra container for >
This commit is contained in:
@@ -20,11 +20,15 @@ const MenuItem = ({ item, last, navigate }) => {
|
||||
key={item.label}
|
||||
onPress={() => navigate(item.componentName)}
|
||||
>
|
||||
<View>
|
||||
<View style={styles.textContainer}>
|
||||
<AppText style={styles.title}>{t(`${item.label}.name`)}</AppText>
|
||||
{!!item.label && <AppText>{t(`${item.label}.text`)}</AppText>}
|
||||
</View>
|
||||
<AppIcon name="chevron-right" color={Colors.orange} />
|
||||
<AppIcon
|
||||
style={styles.chevronContainer}
|
||||
name="chevron-right"
|
||||
color={Colors.orange}
|
||||
/>
|
||||
</TouchableOpacity>
|
||||
</Segment>
|
||||
)
|
||||
@@ -44,6 +48,13 @@ const styles = StyleSheet.create({
|
||||
color: Colors.purple,
|
||||
fontSize: Sizes.subtitle,
|
||||
},
|
||||
textContainer: {
|
||||
flex: 5,
|
||||
},
|
||||
chevronContainer: {
|
||||
textAlign: 'right',
|
||||
flex: 1,
|
||||
},
|
||||
})
|
||||
|
||||
export default MenuItem
|
||||
|
||||
+1
-1
@@ -122,7 +122,7 @@
|
||||
},
|
||||
"password": {
|
||||
"name": "Password",
|
||||
"text": ""
|
||||
"text": "set or edit your password"
|
||||
},
|
||||
"reminders": {
|
||||
"name": "Reminders",
|
||||
|
||||
Reference in New Issue
Block a user