Explore Library
Code QuizBeginner

Platform-Specific Code

Learn to read the current platform with Platform.OS.

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

const padding = Platform === 'ios' ? 20 : 0;

export default padding;

What is the bug in this code?