import { ScrollView } from 'react-native'; import { Button, FlexView, Text, Visual, useCustomDimensions } from '@reown/appkit-ui-react-native'; import { EventsController, RouterController } from '@reown/appkit-core-react-native'; import styles from './styles'; export function WhatIsAWalletView() { const { padding } = useCustomDimensions(); const onGetWalletPress = () => { RouterController.push('GetWallet'); EventsController.sendEvent({ type: 'track', event: 'CLICK_GET_WALLET_HELP' }); }; return ( Your web3 account Create a wallet with your email or by choosing a wallet provider. The home for your digital assets Store, send, and receive digital assets like crypto and NFTs. Your gateway to web3 apps Connect your wallet to start exploring DeFi, DAOs, and much more. ); }