getPrefixByWidth static method

String getPrefixByWidth(
  1. double width
)

Returns what is the current prefix based on width

Implementation

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