import { ScrollView } from '@/components/ui/scroll-view'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import { useColor } from '@/hooks/useColor'; import { BORDER_RADIUS } from '@/theme/globals'; import React from 'react'; export function ScrollViewIndicators() { const card = useColor('card'); return ( {/* Vertical with indicators */} With Scroll Indicators {Array.from({ length: 12 }, (_, i) => ( Item {i + 1} - Scroll indicators visible ))} {/* Horizontal without indicators */} Without Scroll Indicators {Array.from({ length: 8 }, (_, i) => ( {i + 1} ))} ); }