mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
6 lines
155 B
Dart
6 lines
155 B
Dart
import 'dart:io';
|
|
|
|
final kIsDesktop = Platform.isLinux || Platform.isWindows || Platform.isMacOS;
|
|
|
|
final kIsMobile = Platform.isAndroid || Platform.isIOS;
|