calculateTableWidth method

double calculateTableWidth()

Implementation

double calculateTableWidth() {
  return Get.width < 664
      ? Get.width / 0.4
      : Get.width < 837
          ? Get.width / 0.5
          : Get.width < 1000
              ? Get.width / 0.6
              : Get.width < 1130
                  ? Get.width / 0.7
                  : Get.width < 1290
                      ? Get.width / 0.9
                      : Get.width < 1345
                          ? Get.width / 1.0
                          : Get.width / 1.1;
}