2024-12-29 23:48:53 +02:00
|
|
|
import 'package:flutter/foundation.dart';
|
2025-06-20 21:56:18 +02:00
|
|
|
import 'dart:io';
|
2024-12-29 23:48:53 +02:00
|
|
|
|
2023-07-11 20:12:13 +03:00
|
|
|
class FeatureFlag {
|
|
|
|
static const bool isCakePayEnabled = false;
|
2024-03-18 17:45:11 +02:00
|
|
|
static const bool isExolixEnabled = true;
|
2025-03-21 18:22:00 +01:00
|
|
|
static const bool isBackgroundSyncEnabled = true;
|
2025-06-20 21:56:18 +02:00
|
|
|
static final bool isInAppTorEnabled = (Platform.isAndroid);
|
2024-12-29 23:48:53 +02:00
|
|
|
static const int verificationWordsCount = kDebugMode ? 0 : 2;
|
2025-04-03 03:31:25 +02:00
|
|
|
static const bool hasDevOptions = bool.fromEnvironment('hasDevOptions', defaultValue: kDebugMode);
|
2023-07-11 20:12:13 +03:00
|
|
|
}
|