mirror of
https://github.com/tooot-app/app
synced 2025-04-20 05:07:29 +02: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.ItemTitle children={item.title} />
|
||||||
<DropdownMenu.ItemSubtitle children={item.domain} />
|
<DropdownMenu.ItemSubtitle children={item.domain} />
|
||||||
{index === remotes?.findIndex(r => r.domain === remoteActive) ? (
|
{index === remotes?.findIndex(r => r.domain === remoteActive) ? (
|
||||||
<DropdownMenu.ItemIcon ios={{ name: 'trash' }} />
|
<DropdownMenu.ItemIcon
|
||||||
|
ios={{ name: 'trash' }}
|
||||||
|
androidIconName='ic_menu_delete'
|
||||||
|
/>
|
||||||
) : null}
|
) : null}
|
||||||
</DropdownMenu.CheckboxItem>
|
</DropdownMenu.CheckboxItem>
|
||||||
))}
|
))}
|
||||||
@ -391,7 +394,7 @@ const Explore = ({ route: { key: page } }: { route: { key: 'Explore' } }) => {
|
|||||||
<DropdownMenu.ItemTitle
|
<DropdownMenu.ItemTitle
|
||||||
children={t('screenTabs:tabs.public.exploring.followRemote')}
|
children={t('screenTabs:tabs.public.exploring.followRemote')}
|
||||||
/>
|
/>
|
||||||
<DropdownMenu.ItemIcon ios={{ name: 'plus' }} />
|
<DropdownMenu.ItemIcon ios={{ name: 'plus' }} androidIconName='ic_menu_add' />
|
||||||
</DropdownMenu.Item>
|
</DropdownMenu.Item>
|
||||||
</DropdownMenu.Group>
|
</DropdownMenu.Group>
|
||||||
</DropdownMenu.Content>
|
</DropdownMenu.Content>
|
||||||
|
@ -71,7 +71,7 @@ const AccountInformationActions: React.FC = () => {
|
|||||||
round
|
round
|
||||||
type='icon'
|
type='icon'
|
||||||
content='at-sign'
|
content='at-sign'
|
||||||
style={{ flex: 1, marginRight: StyleConstants.Spacing.S }}
|
style={{ marginRight: StyleConstants.Spacing.S }}
|
||||||
onPress={() => {}}
|
onPress={() => {}}
|
||||||
/>
|
/>
|
||||||
</DropdownMenu.Trigger>
|
</DropdownMenu.Trigger>
|
||||||
@ -129,7 +129,7 @@ const styles = StyleSheet.create({
|
|||||||
base: {
|
base: {
|
||||||
alignSelf: 'flex-end',
|
alignSelf: 'flex-end',
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
alignItems: 'stretch'
|
alignItems: 'center'
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user