[🐴] add link to chat settings from main settings (#4197)
* add link to chat settings from main settings * move to beneath saved feeds weird ass diff on this commit lol
This commit is contained in:
parent
f924465899
commit
0e77280310
3 changed files with 28 additions and 1 deletions
|
@ -615,6 +615,31 @@ export function SettingsScreen({}: Props) {
|
|||
<Trans>My Saved Feeds</Trans>
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
<TouchableOpacity
|
||||
testID="linkToChatSettingsBtn"
|
||||
style={[
|
||||
styles.linkCard,
|
||||
pal.view,
|
||||
isSwitchingAccounts && styles.dimmed,
|
||||
]}
|
||||
onPress={
|
||||
isSwitchingAccounts
|
||||
? undefined
|
||||
: () => navigation.navigate('MessagesSettings')
|
||||
}
|
||||
accessibilityRole="button"
|
||||
accessibilityLabel={_(msg`Chat settings`)}
|
||||
accessibilityHint={_(msg`Opens chat settings`)}>
|
||||
<View style={[styles.iconContainer, pal.btn]}>
|
||||
<FontAwesomeIcon
|
||||
icon={['far', 'comment-dots']}
|
||||
style={pal.text as FontAwesomeIconStyle}
|
||||
/>
|
||||
</View>
|
||||
<Text type="lg" style={pal.text}>
|
||||
<Trans>Chat Settings</Trans>
|
||||
</Text>
|
||||
</TouchableOpacity>
|
||||
|
||||
<View style={styles.spacer20} />
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue