Update expo application
Build and Push Next App / quality (push) Successful in 1m27s
Build and Push Next App / build-next (push) Successful in 3m58s

This commit is contained in:
Gabriel Brown
2026-06-22 12:13:02 -04:00
parent ddce5efb13
commit 42f95530de
78 changed files with 5315 additions and 421 deletions
@@ -0,0 +1,24 @@
import type { PressableProps } from 'react-native';
import { Pressable, Text, View } from 'react-native';
export const ActionRow = ({
detail,
label,
...props
}: PressableProps & {
detail?: string;
label: string;
}) => (
<Pressable
className='border-border min-h-14 flex-row items-center justify-between gap-3 border-b py-3'
{...props}
>
<View className='min-w-0 flex-1'>
<Text className='text-foreground font-medium'>{label}</Text>
{detail ? (
<Text className='text-muted-foreground mt-1 text-xs'>{detail}</Text>
) : null}
</View>
<Text className='text-muted-foreground text-lg'></Text>
</Pressable>
);