common constant

List<Device> const common

Implementation

static const common = [
  Device(
    size: Size(320, 480),
    name: 'Ipod touch',
    devicePixelRatio: 3 / 2,
  ),
  Device(
    size: Size(1440, 2880),
    name: 'Google Pixel 2 XL',
    devicePixelRatio: 18 / 9,
  ),
  Device(
    size: Size(320, 568),
    name: 'Iphone SE',
    devicePixelRatio: 2,
  ),
  Device(
    size: Size(480, 800),
    name: 'Nexus One',
    devicePixelRatio: 3 / 5,
  ),
  Device.iphone11,
  Device.tabletPortrait,
  Device.tabletLandscape,
];