Skip to content

Commit

Permalink
Merge branch 'develop' into feature/9oormthon-univ#17/커뮤니티-API-연결
Browse files Browse the repository at this point in the history
  • Loading branch information
nyewon authored Nov 23, 2024
2 parents 3de0cca + 5b7fc2f commit fe6517d
Show file tree
Hide file tree
Showing 42 changed files with 3,799 additions and 187 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files

.env
# dependencies
node_modules/

Expand Down
21 changes: 21 additions & 0 deletions app.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import 'dotenv/config';

export default {
expo: {
name: 'ZipCock',
version: '1.0.0',
extra: {
kakaoRedirectUri: process.env.KAKAO_REDIRECT_URI,
kakaoClientId: process.env.KAKAO_CLIENT_ID,
serverUrl: process.env.SERVER_URL,
kakaoJsKey: process.env.KAKAO_JS_KEY,
},
ios: {
newArchEnabled: true,
bundleIdentifier: 'com.zipcock.app',
},
android: {
newArchEnabled: true,
},
},
};
3 changes: 2 additions & 1 deletion app.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"userInterfaceStyle": "light",
"newArchEnabled": true,
"ios": {
"supportsTablet": true
"supportsTablet": true,
"bundleIdentifier": "com.zipcock.app"
},
"android": {
"adaptiveIcon": {
Expand Down
124 changes: 122 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,26 @@
"web": "expo start --web"
},
"dependencies": {
"@react-native-seoul/kakao-login": "^5.4.1",
"@react-navigation/bottom-tabs": "^7.0.4",
"@react-navigation/native": "^7.0.3",
"@react-navigation/native-stack": "^7.0.3",
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"expo": "~52.0.7",
"expo-file-system": "~18.0.3",
"expo-image-picker": "~16.0.2",
"expo-status-bar": "~2.0.0",
"prop-types": "^15.8.1",
"react": "18.3.1",
"react-native": "0.76.2",
"react-native-dotenv": "^3.4.11",
"react-native-safe-area-context": "4.12.0",
"react-native-screens": "~4.1.0",
"react-native-svg": "15.8.0"
"react-native-svg": "15.8.0",
"react-native-config": "^1.5.3",
"react-native-kakao-logins": "^1.4.0",
"react-native-webview": "^13.12.4"
},
"devDependencies": {
"@babel/core": "^7.20.0",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/home/slide/slide1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/images/home/slide/slide2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
64 changes: 63 additions & 1 deletion src/navigation/stack/HomeStack.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import React from 'react';
import { View } from 'react-native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import { Home, FavoriteHomes, RealEstateInfo, BuildingRegister, BuildingInfo } from '../../screens/home/index';
import {
Home,
FavoriteHomes,
RealEstateInfo,
BuildingRegister,
BuildingInfo,
RealEstateCaution,
RealEstateTest,
RealEstateResult,
RealEstateTestInfo,
} from '../../screens/home/index';
import { BackIcon } from '../../assets/icons/iconSvg';

const Stack = createNativeStackNavigator();
Expand Down Expand Up @@ -75,6 +85,58 @@ function HomeStack() {
),
})}
/>
<Stack.Screen
name="RealEstateCaution"
component={RealEstateCaution}
options={({ navigation }) => ({
title: 'RealEstateCaution',
headerTitleAlign: 'center',
headerLeft: () => (
<View style={{ marginLeft: 10 }}>
<BackIcon onPress={() => navigation.goBack()} />
</View>
),
})}
/>
<Stack.Screen
name="RealEstateTest"
component={RealEstateTest}
options={({ navigation }) => ({
title: 'RealEstateInfo',
headerTitleAlign: 'center',
headerLeft: () => (
<View style={{ marginLeft: 10 }}>
<BackIcon onPress={() => navigation.goBack()} />
</View>
),
})}
/>
<Stack.Screen
name="RealEstateTestInfo"
component={RealEstateTestInfo}
options={({ navigation }) => ({
title: 'RealEstateTestInfo',
headerTitleAlign: 'center',
headerLeft: () => (
<View style={{ marginLeft: 10 }}>
<BackIcon onPress={() => navigation.goBack()} />
</View>
),
})}
/>
<Stack.Screen
name="RealEstateResult"
component={RealEstateResult}
options={({ navigation }) => ({
title: 'RealEstateResult',
headerTitleAlign: 'center',
headerLeft: () => (
<View style={{ marginLeft: 10 }}>
<BackIcon onPress={() => navigation.goBack()} />
</View>
),
})}
/>
</Stack.Navigator>
);
}
Expand Down
Loading

0 comments on commit fe6517d

Please sign in to comment.