From f7729f33db2b7ee6d4affbaad1eee434ea0f29e7 Mon Sep 17 00:00:00 2001 From: xmflsct Date: Wed, 12 Jul 2023 23:36:44 +0200 Subject: [PATCH] Fix Android menu indication --- src/screens/Tabs/Public/Root.tsx | 7 +++++-- src/screens/Tabs/Shared/Account/Information/Actions.tsx | 4 ++-- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/screens/Tabs/Public/Root.tsx b/src/screens/Tabs/Public/Root.tsx index dff28e27..9df1fa08 100644 --- a/src/screens/Tabs/Public/Root.tsx +++ b/src/screens/Tabs/Public/Root.tsx @@ -374,7 +374,10 @@ const Explore = ({ route: { key: page } }: { route: { key: 'Explore' } }) => { {index === remotes?.findIndex(r => r.domain === remoteActive) ? ( - + ) : null} ))} @@ -391,7 +394,7 @@ const Explore = ({ route: { key: page } }: { route: { key: 'Explore' } }) => { - + diff --git a/src/screens/Tabs/Shared/Account/Information/Actions.tsx b/src/screens/Tabs/Shared/Account/Information/Actions.tsx index c312059b..e61da40b 100644 --- a/src/screens/Tabs/Shared/Account/Information/Actions.tsx +++ b/src/screens/Tabs/Shared/Account/Information/Actions.tsx @@ -71,7 +71,7 @@ const AccountInformationActions: React.FC = () => { round type='icon' content='at-sign' - style={{ flex: 1, marginRight: StyleConstants.Spacing.S }} + style={{ marginRight: StyleConstants.Spacing.S }} onPress={() => {}} /> @@ -129,7 +129,7 @@ const styles = StyleSheet.create({ base: { alignSelf: 'flex-end', flexDirection: 'row', - alignItems: 'stretch' + alignItems: 'center' } })