import { Screen, View, Text } from '../index'; export const ViewExamples = () => { return ( View Examples {/* Spacing Examples */} Spacing Variants None XS SM MD LG XL {/* Background Examples */} Background Variants Transparent Primary Secondary Tertiary Inverse (of primary) Inverse Secondary Inverse Tertiary {/* Border Radius Examples */} Border Radius None XS SM MD LG XL {/* Border Examples */} Border Variants None Thin Thick {/* Layout Examples */} Layout Examples Left Center Right Centered Column Layout {/* Scrollable Example */} Scrollable View Fixed 200x200px container with scrollable content Line 1: Scroll down to see more content Line 2 Line 3 Line 4 Line 5 Line 6 Line 7 Line 8 Line 9 Line 10 Line 11 Line 12 Line 13 Line 14 Line 15: End of scrollable content {/* Scrollable with Flex Example */} Scrollable with Flex 200x300px container with 100px header and flex:1 scrollable area {/* Fixed 100px header */} Header (100px) {/* Flex scrollable content */} Scrollable content below header Line 2 Line 3 Line 4 Line 5 Line 6 Line 7 Line 8 Line 9 Line 10 Line 11 Line 12: End ); };