feat: proyecto Expo inicializado

This commit is contained in:
2026-05-22 15:06:00 -06:00
parent 1977ab55a6
commit d1a3a107c4
13 changed files with 8935 additions and 0 deletions

29
frontend/app.json Normal file
View File

@@ -0,0 +1,29 @@
{
"expo": {
"name": "frontend",
"slug": "frontend",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"edgeToEdgeEnabled": true
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}