mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-21 06:38:53 +01:00
8 lines
351 B
Dart
8 lines
351 B
Dart
import 'package:np_platform_util/np_platform_util.dart';
|
|
|
|
final isSupportMapView =
|
|
[NpPlatform.android, NpPlatform.web].contains(getRawPlatform());
|
|
final isSupportSelfSignedCert = getRawPlatform() == NpPlatform.android;
|
|
final isSupportEnhancement = getRawPlatform() == NpPlatform.android;
|
|
|
|
final isSupportAds = getRawPlatform() != NpPlatform.web;
|