expo-template-default 55.1.4 → 55.1.6

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/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.4",
5
+ "version": "55.1.6",
6
6
  "scripts": {
7
7
  "start": "expo start",
8
8
  "reset-project": "node ./scripts/reset-project.js",
@@ -16,27 +16,27 @@
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.10",
20
- "expo-constants": "~55.0.4",
21
- "expo-device": "~55.0.6",
22
- "expo-font": "~55.0.3",
23
- "expo-glass-effect": "~55.0.5",
24
- "expo-image": "~55.0.3",
25
- "expo-linking": "~55.0.4",
26
- "expo-router": "~55.0.0-preview.7",
27
- "expo-splash-screen": "~55.0.5",
28
- "expo-status-bar": "~55.0.2",
29
- "expo-symbols": "~55.0.3",
30
- "expo-system-ui": "~55.0.5",
31
- "expo-web-browser": "~55.0.5",
19
+ "expo": "~55.0.0-preview.12",
20
+ "expo-constants": "~55.0.6",
21
+ "expo-device": "~55.0.8",
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",
29
+ "expo-symbols": "~55.0.4",
30
+ "expo-system-ui": "~55.0.8",
31
+ "expo-web-browser": "~55.0.8",
32
32
  "react": "19.2.0",
33
33
  "react-dom": "19.2.0",
34
- "react-native": "0.83.1",
34
+ "react-native": "0.83.2",
35
35
  "react-native-gesture-handler": "~2.30.0",
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.22.0",
39
+ "react-native-screens": "~4.23.0",
40
40
  "react-native-web": "~0.21.0"
41
41
  },
42
42
  "devDependencies": {
@@ -7,30 +7,30 @@ import { scheduleOnRN } from 'react-native-worklets';
7
7
  const INITIAL_SCALE_FACTOR = Dimensions.get('screen').height / 90;
8
8
  const DURATION = 600;
9
9
 
10
- const splashKeyframe = new Keyframe({
11
- 0: {
12
- transform: [{ scale: INITIAL_SCALE_FACTOR }],
13
- opacity: 1,
14
- },
15
- 20: {
16
- opacity: 1,
17
- },
18
- 70: {
19
- opacity: 0,
20
- easing: Easing.elastic(0.7),
21
- },
22
- 100: {
23
- opacity: 0,
24
- transform: [{ scale: 1 }],
25
- easing: Easing.elastic(0.7),
26
- },
27
- });
28
-
29
10
  export function AnimatedSplashOverlay() {
30
11
  const [visible, setVisible] = useState(true);
31
12
 
32
13
  if (!visible) return null;
33
14
 
15
+ const splashKeyframe = new Keyframe({
16
+ 0: {
17
+ transform: [{ scale: INITIAL_SCALE_FACTOR }],
18
+ opacity: 1,
19
+ },
20
+ 20: {
21
+ opacity: 1,
22
+ },
23
+ 70: {
24
+ opacity: 0,
25
+ easing: Easing.elastic(0.7),
26
+ },
27
+ 100: {
28
+ opacity: 0,
29
+ transform: [{ scale: 1 }],
30
+ easing: Easing.elastic(0.7),
31
+ },
32
+ });
33
+
34
34
  return (
35
35
  <Animated.View
36
36
  entering={splashKeyframe.duration(DURATION).withCallback((finished) => {