import React from 'react'; import { Flex, Center, Heading, ScrollView, VStack, Divider, Box, } from 'native-base'; export function Example() { return ( {/* flexDirection -> row */} row
100
200
300
400
{/* flexDirection -> column */} column
100
200
300
400
{/* flexDirection -> row-reverse */} row-reverse
100
200
300
400
{/* flexDirection -> column-reverse */} column-reverse
100
200
300
400
); }