import React from 'react'; import { Input, KeyboardAvoidingView, Text, Button, VStack, useBreakpointValue, } from 'native-base'; import { Platform } from 'react-native'; export const Example = () => { const isLargeScreen = useBreakpointValue({ base: false, sm: false, md: false, lg: true, }); return ( {isLargeScreen ? ( Please see the example in your mobile to observe the effect ) : ( Header )} ); };