expo-template-default 55.1.6 → 55.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -35,6 +35,12 @@ npm run reset-project
35
35
 
36
36
  This command will move the starter code to the **app-example** directory and create a blank **app** directory where you can start developing.
37
37
 
38
+ ### Other setup steps
39
+
40
+ - To set up ESLint for linting, run `npx expo lint`, or follow our guide on ["Using ESLint and Prettier"](https://docs.expo.dev/guides/using-eslint/)
41
+ - If you'd like to set up unit testing, follow our guide on ["Unit Testing with Jest"](https://docs.expo.dev/develop/unit-testing/)
42
+ - Learn more about the TypeScript setup in this template in our guide on ["Using TypeScript"](https://docs.expo.dev/guides/typescript/)
43
+
38
44
  ## Learn more
39
45
 
40
46
  To learn more about developing your project with Expo, look at the following resources:
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "expo-template-default",
3
3
  "license": "0BSD",
4
4
  "main": "expo-router/entry",
5
- "version": "55.1.6",
5
+ "version": "55.1.7",
6
6
  "scripts": {
7
7
  "start": "expo start",
8
8
  "reset-project": "node ./scripts/reset-project.js",
@@ -16,19 +16,19 @@
16
16
  "@react-navigation/bottom-tabs": "^7.7.3",
17
17
  "@react-navigation/elements": "^2.8.1",
18
18
  "@react-navigation/native": "^7.1.28",
19
- "expo": "~55.0.0-preview.12",
20
- "expo-constants": "~55.0.6",
21
- "expo-device": "~55.0.8",
19
+ "expo": "~55.0.0",
20
+ "expo-constants": "~55.0.7",
21
+ "expo-device": "~55.0.9",
22
22
  "expo-font": "~55.0.4",
23
- "expo-glass-effect": "~55.0.6",
24
- "expo-image": "~55.0.4",
25
- "expo-linking": "~55.0.6",
26
- "expo-router": "~55.0.0-preview.9",
27
- "expo-splash-screen": "~55.0.8",
28
- "expo-status-bar": "~55.0.3",
23
+ "expo-glass-effect": "~55.0.7",
24
+ "expo-image": "~55.0.5",
25
+ "expo-linking": "~55.0.7",
26
+ "expo-router": "~55.0.0",
27
+ "expo-splash-screen": "~55.0.9",
28
+ "expo-status-bar": "~55.0.4",
29
29
  "expo-symbols": "~55.0.4",
30
- "expo-system-ui": "~55.0.8",
31
- "expo-web-browser": "~55.0.8",
30
+ "expo-system-ui": "~55.0.9",
31
+ "expo-web-browser": "~55.0.9",
32
32
  "react": "19.2.0",
33
33
  "react-dom": "19.2.0",
34
34
  "react-native": "0.83.2",
@@ -36,13 +36,11 @@
36
36
  "react-native-worklets": "0.7.2",
37
37
  "react-native-reanimated": "~4.2.1",
38
38
  "react-native-safe-area-context": "~5.6.2",
39
- "react-native-screens": "~4.23.0",
39
+ "react-native-screens": "~4.24.0",
40
40
  "react-native-web": "~0.21.0"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/react": "~19.2.2",
44
- "typescript": "~5.9.2",
45
- "eslint": "^9.25.0",
46
- "eslint-config-expo": "~55.0.0"
44
+ "typescript": "~5.9.2"
47
45
  }
48
46
  }
@@ -15,12 +15,18 @@ export default function AppTabs() {
15
15
  labelStyle={{ selected: { color: colors.text } }}>
16
16
  <NativeTabs.Trigger name="index">
17
17
  <NativeTabs.Trigger.Label>Home</NativeTabs.Trigger.Label>
18
- <NativeTabs.Trigger.Icon src={require('@/assets/images/tabIcons/home.png')} />
18
+ <NativeTabs.Trigger.Icon
19
+ src={require('@/assets/images/tabIcons/home.png')}
20
+ renderingMode="template"
21
+ />
19
22
  </NativeTabs.Trigger>
20
23
 
21
24
  <NativeTabs.Trigger name="explore">
22
25
  <NativeTabs.Trigger.Label>Explore</NativeTabs.Trigger.Label>
23
- <NativeTabs.Trigger.Icon src={require('@/assets/images/tabIcons/explore.png')} />
26
+ <NativeTabs.Trigger.Icon
27
+ src={require('@/assets/images/tabIcons/explore.png')}
28
+ renderingMode="template"
29
+ />
24
30
  </NativeTabs.Trigger>
25
31
  </NativeTabs>
26
32
  );
package/eslint.config.js DELETED
@@ -1,10 +0,0 @@
1
- // https://docs.expo.dev/guides/using-eslint/
2
- const { defineConfig } = require('eslint/config');
3
- const expoConfig = require('eslint-config-expo/flat');
4
-
5
- module.exports = defineConfig([
6
- expoConfig,
7
- {
8
- ignores: ['dist/*'],
9
- },
10
- ]);