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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113{
"$schema": "https://ui.shadcn.com/schema/registry.json",
"homepage": "https://shadcn-rn-registry-template.vercel.app",
"name": "shadcn-rn",
"description": "A registry of React Native components for your app",
"items": [
{
"name": "themed-view",
"type": "registry:component",
"title": "Themed View",
"description": "View component with theme support",
"registryDependencies": ["use-theme-color"],
"files": [
{
"path": "registry/components-lib/components/themed-view.tsx",
"type": "registry:component"
}
]
},
{
"name": "use-color-scheme",
"type": "registry:hook",
"title": "Use Color Scheme",
"description": "Hook for getting color scheme",
"files": [
{
"path": "hooks/use-color-scheme.ts",
"type": "registry:hook"
},
{
"path": "hooks/use-color-scheme.web.ts",
"type": "registry:hook"
}
]
},
{
"name": "use-theme-color",
"type": "registry:hook",
"title": "Use Theme Color",
"description": "Hook for getting theme colors",
"files": [
{
"path": "hooks/use-theme-color.ts",
"type": "registry:hook"
}
]
},
{
"name": "themed-text",
"type": "registry:component",
"title": "Themed Text",
"description": "Text component with theme support",
"registryDependencies": ["use-theme-color"],
"files": [
{
"path": "registry/components-lib/components/themed-text.tsx",
"type": "registry:component"
}
]
},
{
"name": "collapsible",
"type": "registry:component",
"title": "Collapsible",
"description": "A collapsible component with animations",
"dependencies": ["lucide-react-native"],
"registryDependencies": [
"use-color-scheme",
"themed-text",
"themed-view"
],
"files": [
{
"path": "registry/components-lib/components/collapsible.tsx",
"type": "registry:component"
}
]
},
{
"name": "hello-wave",
"type": "registry:component",
"title": "Hello Wave",
"description": "An animated wave component",
"dependencies": ["react-native-reanimated"],
"files": [
{
"path": "registry/components-lib/components/hello-wave.tsx",
"type": "registry:component"
}
]
},
{
"name": "parallax-scroll-view",
"type": "registry:component",
"title": "Parallax Scroll View",
"description": "A scroll view with parallax effect",
"dependencies": ["react-native-reanimated"],
"registryDependencies": [
"use-color-scheme",
"use-theme-color",
"themed-view",
"themed-text"
],
"files": [
{
"path": "registry/components-lib/components/parallax-scroll-view.tsx",
"type": "registry:component"
}
]
}
]
}