-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathindex.tsx
More file actions
77 lines (75 loc) · 1.81 KB
/
index.tsx
File metadata and controls
77 lines (75 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import React, { useEffect } from "react";
import { createStackNavigator } from "@react-navigation/stack";
import { warnIfNotHardwareAccelerated } from "react-native-webgpu";
import { Cube } from "./Cube";
import type { Routes } from "./Routes";
import { List } from "./List";
import { Helmet } from "./Helmet";
import { Backdrop } from "./Backdrop";
import { InstancedMesh } from "./InstancedMesh";
import { Fiber } from "./Fiber";
import { PostProcessing } from "./PostProcessing";
const Stack = createStackNavigator<Routes>();
export const ThreeJS = () => {
useEffect(() => {
navigator.gpu.requestAdapter().then((adapter) => {
if (adapter) {
warnIfNotHardwareAccelerated(adapter);
}
});
}, []);
return (
<Stack.Navigator>
<Stack.Screen
name="List"
component={List}
options={{
title: "🧊 Three.js",
header: () => null,
}}
/>
<Stack.Screen
name="Fiber"
component={Fiber}
options={{
title: "👕 Fiber",
}}
/>
<Stack.Screen
name="Cube"
component={Cube}
options={{
title: "🧊 Cube",
}}
/>
<Stack.Screen
name="Backdrop"
component={Backdrop}
options={{
title: "💃 Backdrop",
}}
/>
<Stack.Screen
name="InstancedMesh"
component={InstancedMesh}
options={{
title: "🐵 InstancedMesh",
}}
/>
<Stack.Screen
name="PostProcessing"
component={PostProcessing}
options={{
title: "🪄 Post Processing Effects",
}}
/>
<Stack.Screen
name="Helmet"
component={Helmet}
options={{
title: "⛑️ Helmet",
}}
/>
</Stack.Navigator>
);
};