weiterer fortschritt mit tamagui und dem neuen mobile event admin

This commit is contained in:
Codex Agent
2025-12-10 20:01:47 +01:00
parent 73e550ee87
commit 7b01a77083
26 changed files with 761 additions and 139 deletions

View File

@@ -122,20 +122,22 @@ export function ActionTile({
onPress: () => void;
}) {
return (
<Pressable onPress={onPress} style={{ width: '48%' }}>
<Pressable onPress={onPress} style={{ width: '48%', marginBottom: 12 }}>
<YStack
borderRadius={16}
padding="$3"
space="$2"
space="$2.5"
backgroundColor={`${color}22`}
borderWidth={1}
borderColor={`${color}55`}
minHeight={110}
alignItems="center"
justifyContent="center"
>
<XStack width={38} height={38} borderRadius={12} backgroundColor={color} alignItems="center" justifyContent="center">
<IconCmp size={18} color="white" />
<XStack width={34} height={34} borderRadius={12} backgroundColor={color} alignItems="center" justifyContent="center">
<IconCmp size={16} color="white" />
</XStack>
<Text fontSize="$sm" fontWeight="700" color="#111827">
<Text fontSize="$sm" fontWeight="700" color="#111827" textAlign="center">
{label}
</Text>
</YStack>