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