import { Link, Stack } from 'expo-router'; import { useColorScheme } from 'react-native'; import { PaperProvider} from 'react-native-paper'; import { MD3LightTheme, MD3DarkTheme } from 'react-native-paper'; import Ionicons from '@expo/vector-icons/Ionicons'; export default function RootLayout() { const colorScheme = useColorScheme(); const theme = colorScheme === 'dark' ? MD3DarkTheme : MD3LightTheme; return ( ({ title: "Lokalizacja", headerBackTitle: "Powrót", headerRight: () => ( ), })} /> ); }