getResponsiveWidth static method

double getResponsiveWidth(
  1. double fallbackWidth
)

Get appropriate width calculation based on platform

Implementation

static double getResponsiveWidth(double fallbackWidth) {
  // This helps replace GetX's Get.width which can be null
  return fallbackWidth;
}