zio/stable
Hailey 2024-07-05 14:44:06 -07:00 committed by GitHub
parent 09bc4e95d8
commit 56b688744e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 32 additions and 19 deletions

View File

@ -90,20 +90,31 @@ export function AviFollowButton({
hitSlop={createHitslop(3)} hitSlop={createHitslop(3)}
style={[ style={[
a.rounded_full, a.rounded_full,
a.absolute,
{
height: 30,
width: 30,
bottom: -7,
right: -7,
},
]}>
<NativeDropdown items={items}>
<View
style={[a.h_full, a.w_full, a.justify_center, a.align_center]}>
<View
style={[
a.rounded_full,
a.align_center,
select(t.name, { select(t.name, {
light: t.atoms.bg_contrast_100, light: t.atoms.bg_contrast_100,
dim: t.atoms.bg_contrast_100, dim: t.atoms.bg_contrast_100,
dark: t.atoms.bg_contrast_200, dark: t.atoms.bg_contrast_200,
}), }),
a.absolute,
{ {
bottom: -1,
right: -1,
borderWidth: 1, borderWidth: 1,
borderColor: t.atoms.bg.backgroundColor, borderColor: t.atoms.bg.backgroundColor,
}, },
]}> ]}>
<NativeDropdown items={items}>
<Plus <Plus
size="sm" size="sm"
fill={ fill={
@ -114,6 +125,8 @@ export function AviFollowButton({
}).backgroundColor }).backgroundColor
} }
/> />
</View>
</View>
</NativeDropdown> </NativeDropdown>
</Button> </Button>
)} )}