Adopt Tamagui defaults for tabs and filters
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
tests / ui (push) Has been cancelled

This commit is contained in:
Codex Agent
2026-02-04 08:29:50 +01:00
parent 0535f63b40
commit eecb1a5b85
14 changed files with 650 additions and 622 deletions

View File

@@ -1170,7 +1170,6 @@ export default function MobileEventTasksPage() {
borderRadius={16}
borderWidth={1}
borderColor={border}
backgroundColor={surfaceMuted}
overflow="hidden"
gap="$0"
>
@@ -1186,16 +1185,13 @@ export default function MobileEventTasksPage() {
key={tab.value}
value={tab.value}
flex={1}
unstyled
paddingVertical="$2.5"
alignItems="center"
justifyContent="center"
backgroundColor={isActive ? primary : 'transparent'}
borderRightWidth={index === arr.length - 1 ? 0 : 1}
borderRightColor={border}
pressStyle={{ backgroundColor: isActive ? primary : surface }}
>
<Text fontSize="$sm" fontWeight={isActive ? '700' : '500'} color={isActive ? 'white' : text}>
<Text fontSize="$sm" fontWeight={isActive ? '700' : '600'}>
{tab.label}
</Text>
</Tabs.Tab>