diff --git a/src/assets/image.png b/src/assets/image.png new file mode 100644 index 0000000..b7104b9 Binary files /dev/null and b/src/assets/image.png differ diff --git a/src/screens/signup/SplashScreen.js b/src/screens/signup/SplashScreen.js index 5ad7252..c0d8bee 100644 --- a/src/screens/signup/SplashScreen.js +++ b/src/screens/signup/SplashScreen.js @@ -1,5 +1,12 @@ import React, {useState, useCallback, useEffect, useContext} from 'react'; -import {View, Text, SafeAreaView, ScrollView, StyleSheet} from 'react-native'; +import { + View, + Text, + SafeAreaView, + ScrollView, + StyleSheet, + Image, +} from 'react-native'; import { COLOR_WHITE, COLOR_BACKGROUND, @@ -67,7 +74,11 @@ export default function SplashScreen() { //이 함수형 컴포넌트가 화면에 보여지는 부분 return ( - 먹구스꾸 + + {'맛있는 음식을'} + {' 먹구스꾸'} + + @@ -82,12 +93,18 @@ const styles = StyleSheet.create({ backgroundColor: COLOR_BACKGROUND, alignItems: 'center', }, - textMain: { - fontSize: 35, - color: COLOR_TEXT70GRAY, + textMainColor: { + fontSize: 33, + color: '#A4D65E', fontWeight: 'bold', textAlign: 'center', - marginTop: 76, + }, + textMain: { + fontSize: 33, + fontFamily: 'NotoSansKR-Regular', + color: COLOR_PRIMARY, + fontWeight: 'normal', + textAlign: 'center', }, buttonContainer: { position: 'absolute', @@ -96,4 +113,9 @@ const styles = StyleSheet.create({ alignItems: 'center', justifyContent: 'center', }, + image: { + width: 400, + height: 400, + marginTop: 25, + }, });