mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 17:26:18 +01:00
7 lines
184 B
Dart
7 lines
184 B
Dart
import 'dart:io';
|
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
const isWeb = kIsWeb;
|
|
// Platform n/a on web, need checking kIsWeb first
|
|
final isAndroid = !kIsWeb && Platform.isAndroid;
|