가수면

기본 규칙 본문

React Native

기본 규칙

니비앙 2023. 3. 7. 01:46

StyleSheet.create

스타일 자동 완성 기능

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  },
});

삭제하고 아래처럼 써도 되지만 자동완성이 되지 않는다.

const styles = {
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  },
};
Comments