Code QuizIntermediate

Platform-Specific Style Objects

Spot why platform styles never merge into the base style.

Codejavascript
import { Platform, StyleSheet } from 'react-native';

const styles = StyleSheet.create({
  box: {
    padding: 10,
    Platform.select({ ios: { marginTop: 20 }, android: { marginTop: 0 } })
  }
});

export default styles;

Why is this style object invalid?