Skip to content

Commit 9834723

Browse files
committed
feat: Refactor thread viewport management by introducing platform-specific scrollable components and cleaning up mobile app native configurations.
1 parent 4432af7 commit 9834723

File tree

86 files changed

+765
-1762
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+765
-1762
lines changed

.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,11 @@ public
6767
.syncpackrc
6868
pnpm-lock.yaml
6969

70-
*.mdx
70+
*.mdx
71+
72+
# expo
73+
74+
.expo
75+
expo-env.d.ts
76+
/android
77+
/ios

apps/mobile/.expo/README.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

apps/mobile/.expo/devices.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

apps/mobile/.expo/prebuild/cached-packages.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

apps/mobile/.expo/types/router.d.ts

Lines changed: 0 additions & 14 deletions
This file was deleted.

apps/mobile/app.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
44
...config,
55
runtimeVersion: "1.0.0",
66
name: "Creatorem AI",
7-
slug: "creatorem-ai-chat",
7+
slug: "creatorem.ai.chat",
88
version: "1.0.0",
99
orientation: "portrait",
1010
icon: "./assets/pwa-logo/apple-icon-180.png",
11-
scheme: "creatorem-ai-chat-demo",
11+
scheme: "creatorem.ai.chat.demo",
1212
userInterfaceStyle: "automatic",
1313
newArchEnabled: true,
1414
jsEngine: "hermes",
@@ -23,7 +23,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
2323
ios: {
2424
jsEngine: "jsc",
2525
supportsTablet: true,
26-
bundleIdentifier: "com.creatorem.ai-chat-demo",
26+
bundleIdentifier: "com.creatorem.ai.chat.demo",
2727
},
2828
android: {
2929
// for native tabs
@@ -32,7 +32,7 @@ export default ({ config }: ConfigContext): ExpoConfig => ({
3232
foregroundImage: './assets/pwa-logo/apple-icon-180.png',
3333
backgroundColor: "#ffffff",
3434
},
35-
package: "com.creatorem.ai-chat-demo",
35+
package: "com.creatorem.ai.chat.demo",
3636
edgeToEdgeEnabled: true,
3737
},
3838
web: {

0 commit comments

Comments
 (0)