mirror of
https://github.com/tooot-app/app
synced 2024-12-22 07:34:06 +01:00
Fix Android menu indication
This commit is contained in:
parent
f2b275d815
commit
f7729f33db
@ -374,7 +374,10 @@ const Explore = ({ route: { key: page } }: { route: { key: 'Explore' } }) => {
|
||||
<DropdownMenu.ItemTitle children={item.title} />
|
||||
<DropdownMenu.ItemSubtitle children={item.domain} />
|
||||
{index === remotes?.findIndex(r => r.domain === remoteActive) ? (
|
||||
<DropdownMenu.ItemIcon ios={{ name: 'trash' }} />
|
||||
<DropdownMenu.ItemIcon
|
||||
ios={{ name: 'trash' }}
|
||||
androidIconName='ic_menu_delete'
|
||||
/>
|
||||
) : null}
|
||||
</DropdownMenu.CheckboxItem>
|
||||
))}
|
||||
@ -391,7 +394,7 @@ const Explore = ({ route: { key: page } }: { route: { key: 'Explore' } }) => {
|
||||
<DropdownMenu.ItemTitle
|
||||
children={t('screenTabs:tabs.public.exploring.followRemote')}
|
||||
/>
|
||||
<DropdownMenu.ItemIcon ios={{ name: 'plus' }} />
|
||||
<DropdownMenu.ItemIcon ios={{ name: 'plus' }} androidIconName='ic_menu_add' />
|
||||
</DropdownMenu.Item>
|
||||
</DropdownMenu.Group>
|
||||
</DropdownMenu.Content>
|
||||
|
@ -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={() => {}}
|
||||
/>
|
||||
</DropdownMenu.Trigger>
|
||||
@ -129,7 +129,7 @@ const styles = StyleSheet.create({
|
||||
base: {
|
||||
alignSelf: 'flex-end',
|
||||
flexDirection: 'row',
|
||||
alignItems: 'stretch'
|
||||
alignItems: 'center'
|
||||
}
|
||||
})
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user