sw property

double get sw

Implementation

double get sw {
  BuildContext? context = NavigationService.globalNavigatorKey.currentContext;
  if(context == null) {
    log("Error No Init Context Founded");
    return 0;
  }
  return MediaQuery.sizeOf(context)
        .width /
        this;
}