Skip to content

Commit 368b858

Browse files
committed
wip - context-menu done, need refactoring
1 parent 7bacbb5 commit 368b858

File tree

12 files changed

+487
-163
lines changed

12 files changed

+487
-163
lines changed

apps/sandbox/app.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414
},
1515
"ios": {
1616
"supportsTablet": true,
17-
"bundleIdentifier": "com.uwalk.sandbox"
17+
"bundleIdentifier": "com.theoribbi.sandboxprimitives"
1818
},
1919
"android": {
20+
"package": "com.theoribbi.sandboxprimitives",
2021
"adaptiveIcon": {
2122
"foregroundImage": "./assets/adaptive-icon.png",
2223
"backgroundColor": "#ffffff"

apps/sandbox/app/index.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Link, Stack } from "expo-router";
22
import { View, Text } from "@native-ui-org/primitives";
3-
import { StyleSheet, Platform } from "react-native";
3+
import { StyleSheet, Platform, ScrollView } from "react-native";
44

55
const primitives = [
66
{ name: "View", path: "/preview/view", description: "Layout container with cross‑platform a11y & asChild" },
@@ -18,7 +18,7 @@ const primitives = [
1818

1919
export default function Home() {
2020
return (
21-
<View style={styles.container}>
21+
<ScrollView style={styles.container}>
2222
<Stack.Screen options={{ title: "Primitives" }} />
2323

2424
<View style={styles.header}>
@@ -39,7 +39,7 @@ export default function Home() {
3939
</View>
4040
))}
4141
</View>
42-
</View>
42+
</ScrollView>
4343
);
4444
}
4545

0 commit comments

Comments
 (0)