커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
갤럭시 폰이 저장을해도 바로바로 않바뀌네요
[왕초보] 나만의 수익성 앱, 앱개발 종합반
2주차
북마크
임*주
댓글
9
추천
0
조회수
12
조회수
12
답변 완료

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

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



2-4 view 코드스니펫 복붙했는대 웹은 바로바로 바뀌는대

갤럭시 폰은 바뀌지않네요..






작성한 코드 및 에러 메세지

import { StatusBar } from 'expo-status-bar';

import React from 'react';

import { LogBox, StyleSheet, Text, View } from 'react-native';


export default function App() {

 

  LogBox.ignoreAllLogs(['Warning:...'])


  return (

    <View style={styles.container}>

      <View style={styles.subContainerOne}></View>

      <View style={styles.subContainerTwo}></View>

    </View>

  );

}


const styles = StyleSheet.create({

  container: {

    flex: 1,

    backgroundColor: '#fff',

  },

  subContainerOne: {

    flex:1,

    backgroundColor:"yellow"

  },

  subContainerTwo: {

    flex:1,

    backgroundColor:"green"

  }

});



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