import { version } from 'expo/package.json'; import { Image } from 'expo-image'; import { useColorScheme, StyleSheet } from 'react-native'; import { ThemedText } from './themed-text'; import { ThemedView } from './themed-view'; import { Spacing } from '@/constants/theme'; export function WebBadge() { const scheme = useColorScheme(); return ( v{version} ); } const styles = StyleSheet.create({ container: { padding: Spacing.five, alignItems: 'center', gap: Spacing.two, }, versionText: { textAlign: 'center', }, badgeImage: { width: 123, aspectRatio: 123 / 24, }, });