add Zustand and del unnecessary files

This commit is contained in:
Patryk
2025-05-15 00:06:38 +02:00
parent c0b8df55a6
commit 1a8144aee4
10 changed files with 295 additions and 248 deletions

20
App.js
View File

@@ -1,20 +0,0 @@
// import { StatusBar } from 'expo-status-bar';
// import { StyleSheet, Text, View } from 'react-native';
// export default function App() {
// return (
// <View style={styles.container}>
// <Text>Open up App.js to start working on your app!</Text>
// <StatusBar style="auto" />
// </View>
// );
// }
// const styles = StyleSheet.create({
// container: {
// flex: 1,
// backgroundColor: '#fff',
// alignItems: 'center',
// justifyContent: 'center',
// },
// });

View File

@@ -3,71 +3,73 @@ import axios from "axios";
const API_URL = "https://hopp.zikor.pl"; const API_URL = "https://hopp.zikor.pl";
export async function listLocations() { export async function listLocations() {
try { try {
const response = await axios.get(`${API_URL}/locations/all`); const response = await axios.get(`${API_URL}/locations/all`);
if (!response) { if (!response) {
throw new Error("No locations found"); throw new Error("No locations found");
}
return response.data;
} catch (error) {
console.error("Error fetching locations:", error);
throw error;
} }
return response.data;
} catch (error) {
console.error("Error fetching locations:", error);
throw error;
}
} }
export async function getLocation(id) { export async function getLocation(id) {
try { try {
const location = await axios.get(`${API_URL}/locations/${id}`); const location = await axios.get(`${API_URL}/locations/${id}`);
if (!location) { if (!location) {
throw new Error("Location not found"); throw new Error("Location not found");
}
return location.data;
} catch (error) {
console.error("Error fetching location:", error);
throw error;
} }
return location.data;
} catch (error) {
console.error("Error fetching location:", error);
throw error;
}
} }
export async function addLocation(location) { export async function addLocation(location) {
try { try {
const response = await axios.post(`${API_URL}/locations/add`, location, { const response = await axios.post(`${API_URL}/locations/add`, location, {
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
} },
}); });
if (!response) { if (!response) {
throw new Error("Failed to add location"); throw new Error("Failed to add location");
}
return response.data;
} catch (error) {
console.error("Error adding location:", error);
throw error;
} }
return response.data;
} catch (error) {
console.error("Error adding location:", error);
throw error;
}
} }
export async function updateLocation(id, location) { export async function updateLocation(id, location) {
try { try {
const response = await axios.put(`${API_URL}/locations/${id}`, location, { headers: { "Content-Type": "application/json" } }); const response = await axios.put(`${API_URL}/locations/${id}`, location, {
if (!response) { headers: { "Content-Type": "application/json" },
throw new Error("Failed to add location"); });
} if (!response) {
return response.data; throw new Error("Failed to add location");
} catch (error) {
console.error("Error while updating location:", error);
throw error;
} }
return response.data;
} catch (error) {
console.error("Error while updating location:", error);
throw error;
}
} }
export async function deleteLocation(id) { export async function deleteLocation(id) {
try { try {
const response = await axios.delete(`${API_URL}/locations/${id}`); const response = await axios.delete(`${API_URL}/locations/${id}`);
if (!response) { if (!response) {
throw new Error("Failed to delete location"); throw new Error("Failed to delete location");
}
return response.data;
} catch (error) {
console.error("Error while deleting location:", error);
throw error;
} }
} return response.data;
} catch (error) {
console.error("Error while deleting location:", error);
throw error;
}
}

View File

@@ -6,7 +6,7 @@ import {
ScrollView, ScrollView,
} from "react-native"; } from "react-native";
import { TextInput, Button, Snackbar } from "react-native-paper"; import { TextInput, Button, Snackbar } from "react-native-paper";
import { addLocation } from "@/api/locations"; import useLocationStore from "@/locationStore";
export default function FormScreen() { export default function FormScreen() {
const [formData, setFormData] = useState({ const [formData, setFormData] = useState({
@@ -19,7 +19,9 @@ export default function FormScreen() {
const [message, setMessage] = useState(""); const [message, setMessage] = useState("");
const [visible, setVisible] = useState(false); const [visible, setVisible] = useState(false);
const handleAddLocation = () => { const addLocation = useLocationStore((state) => state.addLocation);
const handleAddLocation = async () => {
if ( if (
formData.name && formData.name &&
formData.description && formData.description &&
@@ -36,8 +38,7 @@ export default function FormScreen() {
population: parseInt(formData.population), population: parseInt(formData.population),
}; };
addLocation(newLocation); const added = await addLocation(newLocation);
setFormData({ setFormData({
name: "", name: "",
description: "", description: "",
@@ -45,7 +46,7 @@ export default function FormScreen() {
area: 0, area: 0,
population: 0, population: 0,
}); });
if(addLocation != null) { if (added != null) {
setMessage("Lokalizacja została dodana!"); setMessage("Lokalizacja została dodana!");
setVisible(true); setVisible(true);
} else { } else {

View File

@@ -1,56 +1,36 @@
import { View, StyleSheet, FlatList, ActivityIndicator, RefreshControl } from 'react-native'; import {
import { useTheme, Card, Text, Button } from 'react-native-paper'; View,
import { Link } from 'expo-router'; StyleSheet,
import { useState, useEffect } from 'react'; FlatList,
import { listLocations } from '@/api/locations'; ActivityIndicator,
RefreshControl,
} from "react-native";
import { useTheme, Card, Text, Button } from "react-native-paper";
import { Link } from "expo-router";
import { useState, useEffect } from "react";
import useLocationStore from "@/locationStore";
export default function Index() { export default function Index() {
const theme = useTheme(); const theme = useTheme();
const [locations, setLocations] = useState([]); const { locations } = useLocationStore();
const [loading, setLoading] = useState(true);
const [refreshing, setRefreshing] = useState(false);
const fetchLocations = async () => {
try {
const data = await listLocations();
setLocations(data);
} catch (error) {
console.error("Error fetching locations:", error);
} finally {
setLoading(false);
}
};
const onRefresh = async () => {
setRefreshing(true);
await fetchLocations();
setRefreshing(false);
};
useEffect(() => {
fetchLocations();
}, []);
if (loading) {
return (
<View style={[styles.container, { backgroundColor: theme.colors.background }]}>
<ActivityIndicator size="large" color={theme.colors.primary} />
</View>
);
}
return ( return (
<View style={[styles.container, { backgroundColor: theme.colors.background }]}> <View
style={[styles.container, { backgroundColor: theme.colors.background }]}
>
<FlatList <FlatList
data={locations} data={locations}
keyExtractor={(item) => item.id.toString()} keyExtractor={(item) => item.id.toString()}
renderItem={({ item }) => ( renderItem={({ item }) => (
<Card style={{ margin: 10 }}> <Card style={{ margin: 10 }}>
<Card.Cover style={{ marginBottom: 10 }} source={{ uri: item.image }} /> <Card.Cover
style={{ marginBottom: 10 }}
source={{ uri: item.image }}
/>
<Card.Content style={{ marginBottom: 10 }}> <Card.Content style={{ marginBottom: 10 }}>
<Text variant="titleLarge">{item.name}</Text> <Text variant="titleLarge">{item.name}</Text>
<Text variant="bodyMedium"> <Text variant="bodyMedium">
{item.description && item.description.split('.')[0]}... {item.description && item.description.split(".")[0]}...
</Text> </Text>
</Card.Content> </Card.Content>
<Card.Actions> <Card.Actions>
@@ -60,14 +40,6 @@ export default function Index() {
</Card.Actions> </Card.Actions>
</Card> </Card>
)} )}
refreshControl={
<RefreshControl
refreshing={refreshing || loading}
onRefresh={onRefresh}
colors={["#3b82f6"]}
tintColor="#3b82f6"
/>
}
/> />
</View> </View>
); );
@@ -76,8 +48,8 @@ export default function Index() {
const styles = StyleSheet.create({ const styles = StyleSheet.create({
container: { container: {
flex: 1, flex: 1,
backgroundColor: '#25292e', backgroundColor: "#25292e",
justifyContent: 'center', justifyContent: "center",
alignItems: 'center', alignItems: "center",
}, },
}); });

View File

@@ -1,33 +1,42 @@
import { Link, Stack, useRouter } from 'expo-router'; import { Link, Stack, useRouter } from "expo-router";
import { useColorScheme } from 'react-native'; import { useColorScheme } from "react-native";
import { PaperProvider } from 'react-native-paper'; import { PaperProvider } from "react-native-paper";
import { MD3LightTheme, MD3DarkTheme } from 'react-native-paper'; import { MD3LightTheme, MD3DarkTheme } from "react-native-paper";
import Ionicons from '@expo/vector-icons/Ionicons'; import { useEffect } from "react";
import { deleteLocation } from '@/api/locations'; import Ionicons from "@expo/vector-icons/Ionicons";
import useLocationStore from "@/locationStore";
export default function RootLayout() { export default function RootLayout() {
const colorScheme = useColorScheme(); const colorScheme = useColorScheme();
const theme = colorScheme === 'dark' ? MD3DarkTheme : const theme = colorScheme === "dark" ? MD3DarkTheme : MD3LightTheme;
MD3LightTheme;
const router = useRouter(); const router = useRouter();
const fetchLocations = useLocationStore((state) => state.fetchLocations);
const handleDelete = (id) => { useEffect(() => {
deleteLocation(id); fetchLocations();
while (router.canGoBack()) { }, []);
router.back();
console.log();
const deleteLocation = useLocationStore((state) => state.deleteLocation);
const handleDelete = async (id) => {
const isDeleted = await deleteLocation(id);
if (isDeleted) {
router.replace("/");
} }
router.replace('/');
}; };
return ( return (
<PaperProvider theme={theme} > <PaperProvider theme={theme}>
<Stack screenOptions={{ <Stack
headerStyle: { screenOptions={{
backgroundColor: theme.colors.primaryContainer, headerStyle: {
borderBottomWidth: 0 backgroundColor: theme.colors.primaryContainer,
}, borderBottomWidth: 0,
headerTintColor: theme.colors.primary, },
}}> headerTintColor: theme.colors.primary,
}}
>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} /> <Stack.Screen name="(tabs)" options={{ headerShown: false }} />
<Stack.Screen <Stack.Screen
name="location/[id]" name="location/[id]"
@@ -40,18 +49,28 @@ export default function RootLayout() {
asChild asChild
style={{ marginRight: 11 }} style={{ marginRight: 11 }}
> >
<Ionicons name="pencil" color={theme.colors.primary} size={24} /> <Ionicons
name="pencil"
color={theme.colors.primary}
size={24}
/>
</Link> </Link>
), ),
})} })}
/> />
<Stack.Screen name="location/edit/[id]" options={({ route }) => ({ <Stack.Screen
title: "Edycja", name="location/edit/[id]"
headerRight: () => ( options={({ route }) => ({
<Ionicons name="trash-bin" color={theme.colors.primary} size={24} onPress={() => handleDelete(route.params.id)} /> title: "Edycja",
), headerRight: () => (
})} <Ionicons
name="trash-bin"
color={theme.colors.primary}
size={24}
onPress={() => handleDelete(route.params.id)}
/>
),
})}
/> />
</Stack> </Stack>
</PaperProvider> </PaperProvider>

View File

@@ -1,38 +1,25 @@
import { View, ScrollView, StyleSheet, ActivityIndicator } from 'react-native'; import { View, ScrollView, StyleSheet, ActivityIndicator } from "react-native";
import { useTheme, Text, Card } from 'react-native-paper'; import { useEffect } from "react";
import { useLocalSearchParams } from 'expo-router'; import { useTheme, Text, Card } from "react-native-paper";
import { useEffect, useState } from 'react'; import { useLocalSearchParams } from "expo-router";
import { getLocation } from '@/api/locations'; import useLocationStore from "@/locationStore";
export default function Location() { export default function Location() {
const theme = useTheme(); const theme = useTheme();
const { id } = useLocalSearchParams(); const { id } = useLocalSearchParams();
const [location, setLocation] = useState(null); const getLocation = useLocationStore((state) => state.getLocation);
const [loading, setLoading] = useState(true); const fetchLocations = useLocationStore((state) => state.fetchLocations);
const loading = useLocationStore((state) => state.loading);
const location = getLocation(id);
useEffect(() => { useEffect(() => {
const fetchLocation = async () => { if (!location && !loading) {
try { fetchLocations();
const data = await getLocation(id)
setLocation(data);
} catch (error) {
console.error("Error fetching location:", error);
} finally {
setLoading(false);
}
} }
fetchLocation(); }, [location, loading, fetchLocations]);
}, [id]);
if (loading) { if (loading || !location) {
return (
<View style={[styles.container, { backgroundColor: theme.colors.background }]}>
<ActivityIndicator size="large" color={theme.colors.primary} />
</View>
);
}
if (!location) {
return ( return (
<View style={styles.container}> <View style={styles.container}>
<Text style={styles.text}>Brak lokalizacji - {id}</Text> <Text style={styles.text}>Brak lokalizacji - {id}</Text>
@@ -44,7 +31,10 @@ export default function Location() {
<View style={styles.container}> <View style={styles.container}>
<ScrollView> <ScrollView>
<Card style={{ margin: 10 }}> <Card style={{ margin: 10 }}>
<Card.Cover style={{ marginBottom: 10 }} source={{ uri: location.image }} /> <Card.Cover
style={{ marginBottom: 10 }}
source={{ uri: location.image }}
/>
<Card.Content style={{ marginBottom: 10 }}> <Card.Content style={{ marginBottom: 10 }}>
<Text variant="headlineLarge" style={{ marginBottom: 10 }}> <Text variant="headlineLarge" style={{ marginBottom: 10 }}>
{location.name} {location.name}
@@ -75,11 +65,11 @@ export default function Location() {
const styles = StyleSheet.create({ const styles = StyleSheet.create({
container: { container: {
flex: 1, flex: 1,
backgroundColor: '#25292e', backgroundColor: "#25292e",
justifyContent: 'center', justifyContent: "center",
alignItems: 'center', alignItems: "center",
}, },
text: { text: {
color: '#fff', color: "#fff",
}, },
}); });

View File

@@ -1,8 +1,16 @@
import { useState, useEffect } from 'react'; import { useState, useEffect } from "react";
import { StyleSheet, Platform, ScrollView, KeyboardAvoidingView, View, ActivityIndicator } from 'react-native'; import {
import { TextInput, Button, Snackbar, useTheme } from 'react-native-paper'; StyleSheet,
import { useLocalSearchParams, useRouter } from 'expo-router'; Platform,
import { getLocation, updateLocation } from '@/api/locations'; ScrollView,
KeyboardAvoidingView,
View,
ActivityIndicator,
} from "react-native";
import { TextInput, Button, Snackbar, useTheme } from "react-native-paper";
import { useLocalSearchParams, useRouter } from "expo-router";
// import { getLocation } from "@/api/locations";
import useLocationStore from "@/locationStore";
export default function EditLocation() { export default function EditLocation() {
const theme = useTheme(); const theme = useTheme();
@@ -10,40 +18,34 @@ export default function EditLocation() {
const router = useRouter(); const router = useRouter();
const [loading, setLoading] = useState(true); const [loading, setLoading] = useState(true);
const [formData, setFormData] = useState({ const [formData, setFormData] = useState({
name: '', name: "",
description: '', description: "",
image: '', image: "",
area: '', area: "",
population: '', population: "",
}); });
const [message, setMessage] = useState(''); const [message, setMessage] = useState("");
const [visible, setVisible] = useState(false); const [visible, setVisible] = useState(false);
const updateLocation = useLocationStore((state) => state.updateLocation);
const getLocation = useLocationStore((state) => state.getLocation);
useEffect(() => { useEffect(() => {
const fetchLocation = async () => { const data = getLocation(id);
try { if (data) {
const data = await getLocation(id) setFormData({
name: data.name,
if (data) { description: data.description,
setFormData({ image: data.image,
name: data.name, area: data.area.toString(),
description: data.description, population: data.population.toString(),
image: data.image, });
area: data.area.toString(),
population: data.population.toString(),
});
}
} catch (error) {
console.error("Error fetching location:", error);
} finally {
setLoading(false);
}
} }
fetchLocation(); setLoading(false);
}, [id]); }, [id, getLocation]);
const handleEditLocation = () => { const handleEditLocation = async () => {
if ( if (
formData.name && formData.name &&
formData.description && formData.description &&
@@ -51,7 +53,8 @@ export default function EditLocation() {
formData.area && formData.area &&
formData.population formData.population
) { ) {
const response = updateLocation(id, { // console.log("Form data:", formData);
const response = await updateLocation(id, {
name: formData.name, name: formData.name,
description: formData.description, description: formData.description,
image: formData.image, image: formData.image,
@@ -60,25 +63,30 @@ export default function EditLocation() {
}); });
if (response) { if (response) {
setMessage('Lokalizacja została zaktualizowana!'); setMessage("Lokalizacja została zaktualizowana!");
setVisible(true); setVisible(true);
while (router.canGoBack()) { // Pop from stack until one element is left // while (router.canGoBack()) {
router.back(); // Pop from stack until one element is left
} // router.back();
router.replace("/"); // Replace the last remaining stack element // }
setTimeout(() => {
router.replace("/");
}, 300); // Replace the last remaining stack element
} else { } else {
setMessage('Wystąpił błąd podczas aktualizacji lokalizacji!'); setMessage("Wystąpił błąd podczas aktualizacji lokalizacji!");
setVisible(true); setVisible(true);
} }
} else { } else {
setMessage('Wypełnij wszystkie pola!'); setMessage("Wypełnij wszystkie pola!");
setVisible(true); setVisible(true);
} }
}; };
if (loading) { if (loading) {
return ( return (
<View style={[styles.container, { backgroundColor: theme.colors.background }]}> <View
style={[styles.container, { backgroundColor: theme.colors.background }]}
>
<ActivityIndicator size="large" color={theme.colors.primary} /> <ActivityIndicator size="large" color={theme.colors.primary} />
</View> </View>
); );
@@ -87,7 +95,7 @@ export default function EditLocation() {
return ( return (
<KeyboardAvoidingView <KeyboardAvoidingView
style={{ flex: 1 }} style={{ flex: 1 }}
behavior={Platform.OS === 'ios' ? 'padding' : 'height'} behavior={Platform.OS === "ios" ? "padding" : "height"}
> >
<ScrollView contentContainerStyle={styles.container}> <ScrollView contentContainerStyle={styles.container}>
<Snackbar <Snackbar
@@ -101,7 +109,7 @@ export default function EditLocation() {
mode="outlined" mode="outlined"
label="Nazwa" label="Nazwa"
placeholder="Wpisz nazwę" placeholder="Wpisz nazwę"
style={{ margin: 10, width: '100%' }} style={{ margin: 10, width: "100%" }}
value={formData.name} value={formData.name}
onChangeText={(e) => setFormData({ ...formData, name: e })} onChangeText={(e) => setFormData({ ...formData, name: e })}
/> />
@@ -109,7 +117,7 @@ export default function EditLocation() {
mode="outlined" mode="outlined"
label="Opis" label="Opis"
placeholder="Wpisz opis" placeholder="Wpisz opis"
style={{ margin: 10, width: '100%' }} style={{ margin: 10, width: "100%" }}
multiline={true} multiline={true}
value={formData.description} value={formData.description}
onChangeText={(e) => setFormData({ ...formData, description: e })} onChangeText={(e) => setFormData({ ...formData, description: e })}
@@ -119,7 +127,7 @@ export default function EditLocation() {
label="Link do zdjęcia" label="Link do zdjęcia"
multiline={true} multiline={true}
placeholder="Wpisz link do zdjęcia" placeholder="Wpisz link do zdjęcia"
style={{ margin: 10, width: '100%' }} style={{ margin: 10, width: "100%" }}
value={formData.image} value={formData.image}
onChangeText={(e) => setFormData({ ...formData, image: e })} onChangeText={(e) => setFormData({ ...formData, image: e })}
/> />
@@ -127,7 +135,7 @@ export default function EditLocation() {
mode="outlined" mode="outlined"
label="Powierzchnia" label="Powierzchnia"
placeholder="Wpisz powierzchnię" placeholder="Wpisz powierzchnię"
style={{ margin: 10, width: '100%' }} style={{ margin: 10, width: "100%" }}
value={formData.area} value={formData.area}
keyboardType="numeric" keyboardType="numeric"
onChangeText={(e) => setFormData({ ...formData, area: e })} onChangeText={(e) => setFormData({ ...formData, area: e })}
@@ -136,15 +144,15 @@ export default function EditLocation() {
mode="outlined" mode="outlined"
label="Ludność" label="Ludność"
placeholder="Wpisz liczbę ludności" placeholder="Wpisz liczbę ludności"
style={{ margin: 10, width: '100%' }} style={{ margin: 10, width: "100%" }}
value={formData.population} value={formData.population}
keyboardType="numeric" keyboardType="numeric"
onChangeText={(e) => setFormData({ ...formData, population: e })} onChangeText={(e) => setFormData({ ...formData, population: e })}
/> />
<Button <Button
style={{ margin: 10, width: '100%' }} style={{ margin: 10, width: "100%" }}
icon="plus-circle-outline" icon="plus-circle-outline"
mode={'contained'} mode={"contained"}
onPress={handleEditLocation} onPress={handleEditLocation}
> >
Edytuj Edytuj
@@ -157,8 +165,8 @@ export default function EditLocation() {
const styles = StyleSheet.create({ const styles = StyleSheet.create({
container: { container: {
flex: 1, flex: 1,
backgroundColor: '#25292e', backgroundColor: "#25292e",
justifyContent: 'flex-start', justifyContent: "flex-start",
alignItems: 'center', alignItems: "center",
}, },
}); });

75
locationStore.js Normal file
View File

@@ -0,0 +1,75 @@
import { create } from "zustand";
import * as api from "@/api/locations";
const useLocationStore = create((set, get) => ({
locations: [],
loading: false,
error: null,
fetchLocations: async () => {
set({ loading: true, error: null });
try {
const data = await api.listLocations();
set({ locations: data, loading: false });
} catch (error) {
set({ error, loading: false });
}
},
addLocation: async (location) => {
set({ loading: true, error: null });
try {
const newLoc = await api.addLocation(location);
set((state) => ({
locations: [...state.locations, newLoc],
loading: false,
}));
return newLoc;
} catch (error) {
set({ error, loading: false });
return null;
}
},
updateLocation: async (id, location) => {
set({ loading: true, error: null });
try {
const updated = await api.updateLocation(id, location);
set((state) => ({
locations: state.locations.map((loc) =>
loc.id == id ? updated : loc
),
loading: false,
}));
return updated;
} catch (error) {
set({ error, loading: false });
return null;
}
},
deleteLocation: async (id) => {
set({ loading: true, error: null });
try {
const deleted = await api.deleteLocation(id);
set((state) => ({
locations: state.locations.filter((loc) => loc.id != id),
loading: false,
}));
if(deleted) {
return true;
}
} catch (error) {
set({ error, loading: false });
return false;
}
},
getLocation: (id) => {
return get().locations.find((loc) => String(loc.id) === String(id));
},
}));
export default useLocationStore;

8
package-lock.json generated
View File

@@ -13,7 +13,7 @@
"expo": "^53.0.0", "expo": "^53.0.0",
"expo-constants": "~17.1.6", "expo-constants": "~17.1.6",
"expo-linking": "~7.1.4", "expo-linking": "~7.1.4",
"expo-router": "~5.0.6", "expo-router": "~5.0.7",
"expo-status-bar": "~2.2.3", "expo-status-bar": "~2.2.3",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0", "react-dom": "19.0.0",
@@ -4457,9 +4457,9 @@
} }
}, },
"node_modules/expo-router": { "node_modules/expo-router": {
"version": "5.0.6", "version": "5.0.7",
"resolved": "https://registry.npmjs.org/expo-router/-/expo-router-5.0.6.tgz", "resolved": "https://registry.npmjs.org/expo-router/-/expo-router-5.0.7.tgz",
"integrity": "sha512-/44G3liB7LMMDoUO+lN5TS8XvZrAhLtq7cVGoilO2QkoSBjFQfxFA9VYOVWVlu2R80tN6dM3cgsEuoA275FGQg==", "integrity": "sha512-NlEgRXCKtseDuIHBp87UfkvqsuVrc0MYG+zg33dopaN6wik4RkrWWxUYdNPHub0s/7qMye6zZBY4ZCrXwd/xpA==",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@expo/metro-runtime": "5.0.4", "@expo/metro-runtime": "5.0.4",

View File

@@ -14,7 +14,7 @@
"expo": "^53.0.0", "expo": "^53.0.0",
"expo-constants": "~17.1.6", "expo-constants": "~17.1.6",
"expo-linking": "~7.1.4", "expo-linking": "~7.1.4",
"expo-router": "~5.0.6", "expo-router": "~5.0.7",
"expo-status-bar": "~2.2.3", "expo-status-bar": "~2.2.3",
"react": "19.0.0", "react": "19.0.0",
"react-dom": "19.0.0", "react-dom": "19.0.0",