getPrefixEnumByWidth static method

GridPrefixes getPrefixEnumByWidth(
  1. double width
)

Returns Current GridPrefix

Implementation

static GridPrefixes getPrefixEnumByWidth(double width) {
  if (width >= 1400) {
    return GridPrefixes.xxl;
  } else if (width >= 1200) {
    return GridPrefixes.xl;
  } else if (width >= 992) {
    return GridPrefixes.lg;
  } else if (width >= 768) {
    return GridPrefixes.md;
  } else if (width >= 576) {
    return GridPrefixes.sm;
  } else {
    return GridPrefixes.xs;
  }
}