import { ScrollView } from '@/components/ui/scroll-view'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import { BORDER_RADIUS } from '@/theme/globals'; import React from 'react'; export function ScrollViewVertical() { const colors = [ '#ef4444', '#f97316', '#eab308', '#22c55e', '#3b82f6', '#8b5cf6', '#ec4899', ]; return ( {Array.from({ length: 15 }, (_, i) => ( Card {i + 1} ))} ); }