mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 14:56:20 +01:00
8 lines
184 B
Dart
8 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;
|