import { ScrollView } from '@/components/ui/scroll-view'; import { Text } from '@/components/ui/text'; import { View } from '@/components/ui/view'; import React from 'react'; export function ScrollViewStyled() { return ( 🌙 Dark Theme ScrollView This ScrollView uses custom dark styling with rounded corners and shadows. {Array.from({ length: 12 }, (_, i) => ( Card {i + 1} Beautiful custom styled card with gradient-like colors and shadows. ))} ✨ End of styled content ); }