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 ScrollViewHorizontal() { const gradients = [ ['#ff9a9e', '#fecfef'], ['#a18cd1', '#fbc2eb'], ['#fad0c4', '#ffd1ff'], ['#ffecd2', '#fcb69f'], ['#a8edea', '#fed6e3'], ['#d299c2', '#fef9d7'], ['#89f7fe', '#66a6ff'], ]; return ( {Array.from({ length: 10 }, (_, i) => ( Item {i + 1} ))} ); }