@nativescript/template-blank-solid-vision 8.6.0 → 8.6.2
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/App_Resources/visionOS/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Front.png +0 -0
- package/App_Resources/visionOS/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Middle.png +0 -0
- package/package.json +1 -1
- package/src/routes/home.tsx +1 -1
- package/src/routes/settings.tsx +2 -5
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nativescript/template-blank-solid-vision",
|
|
3
3
|
"main": "src/index.js",
|
|
4
|
-
"version": "8.6.
|
|
4
|
+
"version": "8.6.2",
|
|
5
5
|
"description": "Nativescript visionOS Starter with Solid",
|
|
6
6
|
"author": "NativeScript Team <oss@nativescript.org>",
|
|
7
7
|
"license": "Apache-2.0",
|
package/src/routes/home.tsx
CHANGED
|
@@ -16,7 +16,7 @@ export const Home = () => {
|
|
|
16
16
|
router.navigate("Settings");
|
|
17
17
|
}}
|
|
18
18
|
/>
|
|
19
|
-
<image rowSpan="3" src="~/assets/solid.png" width="100" height="100" className="align-bottom mb-
|
|
19
|
+
<image rowSpan="3" src="~/assets/solid.png" width="100" height="100" className="align-bottom mb-8" />
|
|
20
20
|
</gridlayout>
|
|
21
21
|
</>
|
|
22
22
|
);
|
package/src/routes/settings.tsx
CHANGED
|
@@ -14,16 +14,13 @@ export const Settings = () => {
|
|
|
14
14
|
alignItems: "center",
|
|
15
15
|
}}
|
|
16
16
|
>
|
|
17
|
+
<image src="~/assets/solid.png" width="100" height="100" className="mb-8" />
|
|
17
18
|
<button
|
|
18
19
|
text="Go to Home"
|
|
19
20
|
on:tap={() => {
|
|
20
21
|
router.goBack();
|
|
21
22
|
}}
|
|
22
|
-
|
|
23
|
-
height: 40,
|
|
24
|
-
width: 150,
|
|
25
|
-
borderRadius: "10px",
|
|
26
|
-
}}
|
|
23
|
+
className="rounded-full bg-blue-500 text-white w-[300] p-3 text-2xl font-bold h-[60] text-center capitalize"
|
|
27
24
|
/>
|
|
28
25
|
</flexboxlayout>
|
|
29
26
|
</>
|