Layout 概念
Mobile 佈局遇到的問題
Layout 原則
const styles = StyleSheet.create({
fullscreen: {
width: 640,
height: 960
}
})render(){
return (
<View style={ { width: 600, height: 600 } }>
)
}常用Flexbox 設定值
把畫面撐開與 parent 同高
Last updated
