react-native(리액트 네이티브) component - View
import React, { Component } from 'react'
import {
Text,
View,
} from 'react-native'
export default class ViewColoredBoxesWithText extends Component {
render() {
return (
<View
style={{
flexDirection: 'row',
height: 100,
padding: 20,
}}>
<View style={{backgroundColor: 'blue', flex: 0.3}} />
<View style={{backgroundColor: 'red', flex: 0.5}} />
<Text>Hello World!</Text>
</View>
);
}
}
'프로그래밍(Programming) > 리액트 네이티브(React Native)' 카테고리의 다른 글
react-native(리액트 네이티브) component -WebView (0) | 2019.01.07 |
---|---|
react-native(리액트 네이티브) component - ViewPagerAndroid (0) | 2019.01.07 |
react-native(리액트 네이티브) component - Touchable (0) | 2019.01.07 |
react-native(리액트 네이티브) component - TextInput (0) | 2019.01.07 |
react-native(리액트 네이티브) component - Text (0) | 2019.01.07 |