react native
는 웹사이트가 아니다.html
이 아니기 때문에 div
는 쓸 수 없다. 대신에 View
라는 container를 사용한다.
<Text></Text>
컴포넌트에 들어가야 한다.웬에서 사용하던 모든 스타일 요소를 전부 사용하지는 못할 수도 있다.
StyleSheet.create
Inline
앱의 레이아웃은 웹과는 조금 차이가 있다.
column
flex
를 이용한 비율로 설정해줄 것import { View } from "react-native";
export default function App() {
return (
<View style={{ flex: 1 }}>
<View style={{ flex: 1, backgroundColor: "tomato", }}></View>
<View style={{ flex: 2, backgroundColor: "teal", }}></View>
<View style={{ flex: 1, backgroundColor: "orange", }}></View>
</View>
);
}