1import { Platform } from 'react-native'; 2 3export const CODE_FONT = Platform.select({ 4 default: 'Courier', 5 ios: 'Courier New', 6 android: 'monospace', 7}); 8