[React Native] 레이아웃 스타일링
View 크기(범위)를 결정하는 속성. flex와 width, height으로 나눌 수 있다. flex 크기를 비율로 설정 export default class App extends Component { render() { return ( ); } } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: 'white', }, case1: { flex: 1, backgroundColor: 'red', }, case2: { flex: 3, backgroundColor: 'green', }, case3: { flex: 1, backgroundColor: 'blue', }, }); width, height 숫자를 넣으면 고정 크기, ..
2023. 6. 15.