defaultDeviceDefinition top-level constant

DeviceDefinition const defaultDeviceDefinition

@GOTCHA: The default device is also defined in the platform code. If you change it here, change it in the platform code as well.

Implementation

const defaultDeviceDefinition = DeviceDefinition(
  id: 'ios-iphone-14',
  name: 'iPhone 14',
  logicalResolution: LogicalResolution(
    height: 844,
    width: 390,
  ),
  devicePixelRatio: 3.0,
  targetPlatform: MonarchTargetPlatform.iOS,
);