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 ScrollViewInset() { const card = useColor('card'); return ( {/* Standard ScrollView */} Standard Content {Array.from({ length: 8 }, (_, i) => ( Standard item {i + 1} ))} {/* ScrollView with content inset */} With Content Inset Adjustments Header with Inset {Array.from({ length: 6 }, (_, i) => ( Inset adjusted item {i + 1} ))} Footer with Inset ); }