Skip to content

Commit b70007d

Browse files
committed
Enable tor on iOS
1 parent e491921 commit b70007d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/utils/feature_flag.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import 'package:flutter/foundation.dart';
2+
import 'dart:io';
23

34
class FeatureFlag {
45
static const bool isCakePayEnabled = false;
56
static const bool isExolixEnabled = true;
6-
static const bool isInAppTorEnabled = true;
7+
static final bool isInAppTorEnabled = (Platform.isAndroid || Platform.isIOS);
78
static const bool isBackgroundSyncEnabled = false;
89
static const int verificationWordsCount = kDebugMode ? 0 : 2;
910
}

0 commit comments

Comments
 (0)