1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

A lot of updates

This commit is contained in:
Zhiyuan Zheng
2020-12-01 00:44:28 +01:00
parent 0e3528d2cd
commit 9bfee02484
18 changed files with 463 additions and 279 deletions

View File

@ -28,11 +28,11 @@ const HeaderRight: React.FC<PropsText | PropsIcon> = ({
return (
<Pressable onPress={onPress} style={styles.base}>
{text && <Text style={[styles.text, { color: theme.link }]}>{text}</Text>}
{text && <Text style={[styles.text, { color: theme.primary }]}>{text}</Text>}
{icon && (
<Feather
name={icon}
color={theme.link}
color={theme.primary}
size={StyleConstants.Font.Size.L}
/>
)}