create-expo-stack 2.4.0 → 2.4.1
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.
|
@@ -21,6 +21,7 @@ const Page = () => {
|
|
|
21
21
|
<View style={theme.components.container}>
|
|
22
22
|
<Text style={theme.components.title}>Home</Text>
|
|
23
23
|
<View style={theme.components.separator} />
|
|
24
|
+
<EditScreenInfo path="app/(tabs)/index.tsx" />
|
|
24
25
|
</View>
|
|
25
26
|
);
|
|
26
27
|
<% } else if (props.stylingPackage?.name === "nativewind") { %>
|
|
@@ -37,6 +38,7 @@ const Page = () => {
|
|
|
37
38
|
<YStack flex={1} alignItems="center" justifyContent="center">
|
|
38
39
|
<H2>Home</H2>
|
|
39
40
|
<Separator />
|
|
41
|
+
<EditScreenInfo path="app/(tabs)/index.tsx" />
|
|
40
42
|
</YStack>
|
|
41
43
|
</Theme>
|
|
42
44
|
);
|
|
@@ -45,6 +47,7 @@ const Page = () => {
|
|
|
45
47
|
<Box flex={1} alignItems="center" justifyContent="center">
|
|
46
48
|
<Text variant="title">Home</Text>
|
|
47
49
|
<Box height={1} marginVertical="l_32" width="80%" />
|
|
50
|
+
<EditScreenInfo path="app/(tabs)/index.tsx" />
|
|
48
51
|
</Box>
|
|
49
52
|
);
|
|
50
53
|
<% } else { %>
|
|
@@ -52,6 +55,7 @@ const Page = () => {
|
|
|
52
55
|
<View style={styles.container}>
|
|
53
56
|
<Text style={styles.title}>Home</Text>
|
|
54
57
|
<View style={styles.separator} />
|
|
58
|
+
<EditScreenInfo path="app/(tabs)/index.tsx" />
|
|
55
59
|
</View>
|
|
56
60
|
);
|
|
57
61
|
<% } %>
|