mirror of
https://github.com/JGeek00/adguard-home-manager.git
synced 2025-04-19 13:29:12 +00:00
5 lines
126 B
Dart
5 lines
126 B
Dart
|
import 'package:adguard_home_manager/config/sizes.dart';
|
||
|
|
||
|
bool isDesktop(double width) {
|
||
|
return width > desktopBreakpoint;
|
||
|
}
|