import { Linking, ScrollView } from 'react-native'; import { Button, FlexView, Text, Visual, useCustomDimensions } from '@reown/appkit-ui-react-native'; import styles from './styles'; export function WhatIsANetworkView() { const { padding } = useCustomDimensions(); const onLearnMorePress = () => { Linking.openURL('https://ethereum.org/en/developers/docs/networks/'); }; return ( The system’s nuts and bolts A network is what brings the blockchain to life, as this technical infrastructure allows apps to access the ledger and smart contract services. Designed for different uses Each network is designed differently, and may therefore suit certain apps and experiences. ); }