Learn to read the current platform with Platform.OS.
import { Platform } from 'react-native'; const padding = Platform === 'ios' ? 20 : 0; export default padding;
What is the bug in this code?