Skip to content

Commit

Permalink
Enable tor on iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
MrCyjaneK committed Jan 13, 2025
1 parent e491921 commit b70007d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/utils/feature_flag.dart
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import 'package:flutter/foundation.dart';
import 'dart:io';

class FeatureFlag {
static const bool isCakePayEnabled = false;
static const bool isExolixEnabled = true;
static const bool isInAppTorEnabled = true;
static final bool isInAppTorEnabled = (Platform.isAndroid || Platform.isIOS);
static const bool isBackgroundSyncEnabled = false;
static const int verificationWordsCount = kDebugMode ? 0 : 2;
}

0 comments on commit b70007d

Please sign in to comment.