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 ScrollViewNested() { return ( Vertical Scroll {Array.from({ length: 3 }, (_, sectionIndex) => ( Section {sectionIndex + 1} {Array.from({ length: 8 }, (_, itemIndex) => ( {sectionIndex + 1}.{itemIndex + 1} ))} ))} End of scrollable content ); }