Enable tor on iOS

This commit is contained in:
Czarek Nakamoto 2025-01-13 12:34:59 +01:00
parent 23078a6d0a
commit 812c5e6e53

View file

@ -1,10 +1,11 @@
import 'package:flutter/foundation.dart';
import 'dart:io';
class FeatureFlag {
static const bool isCakePayEnabled = false;
static const bool isExolixEnabled = true;
static const bool isInAppTorEnabled = false;
static const bool isBackgroundSyncEnabled = true;
static final bool isInAppTorEnabled = (Platform.isAndroid || Platform.isIOS);
static const int verificationWordsCount = kDebugMode ? 0 : 2;
static const bool hasDevOptions = bool.fromEnvironment('hasDevOptions', defaultValue: kDebugMode);
}