import React from 'react'; import { useMediaQuery, HStack, VStack, Center, Skeleton } from 'native-base'; export const Example = () => { const [isSmallScreen] = useMediaQuery({ minHeight: 280, maxHeight: 480, }); return (
{isSmallScreen ? ( ) : ( )}
); };