-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chore/update deps #143
Chore/update deps #143
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,41 @@ | ||
{ | ||
"expo": { | ||
"name": "native-form-signals", | ||
"slug": "native-form-signals", | ||
"name": "simple-form-signals", | ||
"slug": "simple-form-signals", | ||
"version": "1.0.0", | ||
"orientation": "portrait", | ||
"icon": "./assets/icon.png", | ||
"userInterfaceStyle": "light", | ||
"splash": { | ||
"image": "./assets/splash.png", | ||
"resizeMode": "contain", | ||
"backgroundColor": "#ffffff" | ||
}, | ||
"icon": "./assets/images/icon.png", | ||
"scheme": "myapp", | ||
"userInterfaceStyle": "automatic", | ||
"newArchEnabled": true, | ||
"ios": { | ||
"supportsTablet": true | ||
}, | ||
"android": { | ||
"adaptiveIcon": { | ||
"foregroundImage": "./assets/adaptive-icon.png", | ||
"foregroundImage": "./assets/images/adaptive-icon.png", | ||
"backgroundColor": "#ffffff" | ||
} | ||
}, | ||
"web": { | ||
"favicon": "./assets/favicon.png" | ||
"bundler": "metro", | ||
"output": "static", | ||
"favicon": "./assets/images/favicon.png" | ||
}, | ||
"plugins": [ | ||
"expo-router", | ||
[ | ||
"expo-splash-screen", | ||
{ | ||
"image": "./assets/images/splash-icon.png", | ||
"imageWidth": 200, | ||
"resizeMode": "contain", | ||
"backgroundColor": "#ffffff" | ||
} | ||
] | ||
], | ||
"experiments": { | ||
"typedRoutes": true | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { Stack } from 'expo-router' | ||
|
||
export default function RootLayout() { | ||
return <Stack /> | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { UserForm } from '@/components/UserForm' | ||
import { View } from 'react-native' | ||
Comment on lines
+1
to
+2
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Path alias configuration needs adjustment The
🔗 Analysis chainVerify path alias configuration The Let me verify the actual location of the UserForm component to ensure the path alias is correctly resolving. 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Check for path alias configuration in common config files
echo "Checking for path alias configuration..."
fd -e json -e js "tsconfig|babel\.config|metro\.config" -x cat {} \; | grep -A 5 "paths\|moduleNameMapper\|extraNodeModules"
Length of output: 1865 Script: #!/bin/bash
# Check the actual location of UserForm component
fd -t f "UserForm" -x echo "Found: {}"
# Also check if the file is actually in the src directory
fd -t f "UserForm" -p "src/"
Length of output: 315 |
||
|
||
export default function Index() { | ||
return ( | ||
<View | ||
style={{ | ||
flex: 1, | ||
paddingHorizontal: 16, | ||
paddingVertical: 16, | ||
}} | ||
> | ||
<UserForm /> | ||
</View> | ||
) | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Asset paths are valid, but web bundler configuration needs attention
All referenced image assets (icon.png, adaptive-icon.png, favicon.png) exist in the correct location. However, the web bundler configuration shows potential issues:
Required actions:
🔗 Analysis chain
Verify asset paths and web bundler configuration
The reorganization of assets and web bundler changes require verification:
Also applies to: 16-16, 21-24
Let me verify the metro bundler configuration with additional checks.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 682
Script:
Length of output: 713