Android with React Native tends to dislike filling unless it has a border. A temporary solution would be to change all of your “paddingXXX” to “marginXXX” to get the approximate style you want.
const styles = StyleSheet.create({ container: { marginTop: 75, alignItems: 'center' }, image: { width: 107, height: 165, margin: 10, backgroundColor:'blue' }, description: { margin: 30, fontSize: 15, color: '#656565', backgroundColor:'red' } });
This is a very bad workaround, but I have yet to see a short fix. As far as I know, there is a problem in the Git repository, but not yet fixed.
source share