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