我只是瞪着天生的反應和周圍的戲劇。所以我剛剛嘗試了flexDirection
風格。反應原生flexDirection錯誤?
因此我從facebook-react中拷貝了這個例子,它看起來不錯。
代碼我testet並在我的iPhone(世博APP)相同的外觀和webside在世博園應用
enter code here
<View style={{
flex: 1,
flexDirection: 'row',
justifyContent: 'flex-end',
}}>
<View style={{width: 50, height: 50, backgroundColor: 'powderblue'}} />
<View style={{width: 50, height: 50, backgroundColor: 'skyblue'}} />
<View style={{width: 50, height: 50, backgroundColor: 'steelblue'}} />
</View>
爲flexDirection: 'row'
。但是,如果我有機會到column
我的屏幕只是白色(視圖元素消失?)。 我tryed接下來的事情是設置justifyContent: 'center'
我這樣做是它看起來像圖片我追加,超級wird,如果你在Facebook頁面應該OBV居中測試後...
那麼這是一個錯誤?那裏有什麼錯誤?
這是孔的東西...:
export default class App extends React.Component {
render() {
return (
<NativeRouter>
<View>
<Route exact path='/'>
<View style={{
flex: 1,
flexDirection: 'column',
justifyContent: 'center'
}}>
<View style={{width: 50, height: 50, backgroundColor: 'powderblue'}} />
<View style={{width: 50, height: 50, backgroundColor: 'skyblue'}} />
<View style={{width: 50, height: 50, backgroundColor: 'steelblue'}} />
</View>
</Route>
</View>
</NativeRouter>
);
}
}
林新的反應原生,所以謝謝你非常糊狀爲你幫助:) –