커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
AboutPage가 expo go에 반영이 안됩니다.
[왕초보] 나만의 수익성 앱, 앱개발 종합반
2주차
북마크
닉*임
댓글
9
추천
0
조회수
20
조회수
20
답변 완료

* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.

* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.


엑스포에 아무것도 안뜹니다.. 뭔가 연결이 안된걸까여


import React from 'react'
import {View,Text} from 'react-native'

export default function AboutPage(){
  return (
    <View>
        <Text>어바웃페이지</Text>
    </View>
    )
}


const styles = StyleSheet.create(

    {
        bgColor:{
        backgroundColor:'navy'
        },

        topText:{
        color:'white',
        fontWeight: '700',
        textAlign: 'center',
        },

        middleBox:
        {
            backgroundColor:'white',
            borderRadius:'30',
            padding:'20',
            margin: '20',
        },

        middleText1:
        {
            color:'black',
            fontWeight: '400',
            textAlign: 'center',
        },

        middleText2:
        {
            color:'black',
            fontWeight: '200',
            textAlign: 'center',
        },

        bottomButton:
        {
            backgroundColor: 'yellow',
            color:'white',
            textAlign:'center',
        },
    }

)


import React from 'react'
import MainPage from './pages/MainPage';
import AboutPage from './pages/AboutPage';

export default function App(){
  // return (<MainPage/>)
  return (<AboutPage/>)
}







취소
 공유
취소
댓글 0
댓글 알림
나의얼굴