We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e491921 commit b70007dCopy full SHA for b70007d
lib/utils/feature_flag.dart
@@ -1,9 +1,10 @@
1
import 'package:flutter/foundation.dart';
2
+import 'dart:io';
3
4
class FeatureFlag {
5
static const bool isCakePayEnabled = false;
6
static const bool isExolixEnabled = true;
- static const bool isInAppTorEnabled = true;
7
+ static final bool isInAppTorEnabled = (Platform.isAndroid || Platform.isIOS);
8
static const bool isBackgroundSyncEnabled = false;
9
static const int verificationWordsCount = kDebugMode ? 0 : 2;
10
}
0 commit comments