passo_mobile_app/lib/utils/screen_info.dart

10 lines
143 B
Dart

import 'package:unit2/utils/global.dart';
bool isMobile() {
if (screenWidth > 500.00) {
return false;
} else {
return true;
}
}