diff --git a/iut-expo-starter/.expo/settings.json b/iut-expo-starter/.expo/settings.json index 470dc637..a482d3a7 100644 --- a/iut-expo-starter/.expo/settings.json +++ b/iut-expo-starter/.expo/settings.json @@ -5,6 +5,5 @@ "minify": false, "urlRandomness": null, "https": false, - "scheme": null, - "devClient": false + "scheme": null } diff --git a/iut-expo-starter/CityList.tsx b/iut-expo-starter/CityList.tsx new file mode 100644 index 00000000..57d84261 --- /dev/null +++ b/iut-expo-starter/CityList.tsx @@ -0,0 +1,9 @@ +import { View } from "react-native" + +export default function CityList(props: any){ + return ( + + + + ) +} \ No newline at end of file diff --git a/iut-expo-starter/Home.tsx b/iut-expo-starter/Home.tsx new file mode 100644 index 00000000..e69de29b diff --git a/iut-expo-starter/ios/.expo/README.md b/iut-expo-starter/ios/.expo/README.md new file mode 100644 index 00000000..fd146b4d --- /dev/null +++ b/iut-expo-starter/ios/.expo/README.md @@ -0,0 +1,15 @@ +> Why do I have a folder named ".expo" in my project? + +The ".expo" folder is created when an Expo project is started using "expo start" command. + +> What do the files contain? + +- "devices.json": contains information about devices that have recently opened this project. This is used to populate the "Development sessions" list in your development builds. +- "packager-info.json": contains port numbers and process PIDs that are used to serve the application to the mobile device/simulator. +- "settings.json": contains the server configuration that is used to serve the application manifest. + +> Should I commit the ".expo" folder? + +No, you should not share the ".expo" folder. It does not contain any information that is relevant for other developers working on the project, it is specific to your machine. + +Upon project creation, the ".expo" folder is already added to your ".gitignore" file. diff --git a/iut-expo-starter/ios/.expo/settings.json b/iut-expo-starter/ios/.expo/settings.json new file mode 100644 index 00000000..92bc513b --- /dev/null +++ b/iut-expo-starter/ios/.expo/settings.json @@ -0,0 +1,8 @@ +{ + "hostType": "lan", + "lanType": "ip", + "dev": true, + "minify": false, + "urlRandomness": null, + "https": false +}