import React from 'react'; import { useMediaQuery, VStack, Skeleton, Center, HStack } from 'native-base'; export const Example = () => { const [isLandScape, isPortrait] = useMediaQuery([ { orientation: 'landscape' }, { orientation: 'portrait' }, ]); return (