This might be a stupid question but I don't understand how components width works.
When I do :
render() {
return (
<View style={{ height: 100, backgroundColor: 'yellow' }}></View>
)
}
My yellow view is visible, takes 100 "height" and full width. Why ? I never set a width, why width is not equal to 0 ?
The Solution!