
import React from 'react'
import {SafeAreaView,View,Text,StyleSheet} from 'react-native'
export default function AboutPage(){
return (
<SafeAreaView style={styles.container}>
<Text style={styles.title}>HI! 스파르타코딩 앱개발 반에 오신것을 환영합니다</Text>
</SafeAreaView>)
}
const styles = StyleSheet.create({
container: {
//앱의 배경 색
flex : 1,
backgroundColor: '#00008b',
},
title: {
//폰트 사이즈
fontSize: 31,
//폰트 두께
fontWeight: '400',
//위 공간으로 부터 이격
marginTop:70,
//왼쪽 공간으로 부터 이격
color : '#fff',
textAlign: 'center',
justifyContent: 'center',
},
})
위에 글씨 아래글씨를 왼쪽 기준으로 붙이고 싶은데 안되네요... 방법이 있을까요?
